public interface ProfileFacility extends ProfileFacility
Rhino extensions to the SLEE-defined Profile Facility.
JNDI_NAME
Modifier and Type | Method and Description |
---|---|
ProfileTableDescriptor |
getProfileTableDescriptor(String profileTableName)
Get the profile table descriptor for the profile table with the specified name.
|
boolean |
profileTableExists(String profileTableName)
Determine if a profile table with the specified name currently exists in the SLEE.
|
getProfileByIndexedAttribute, getProfiles, getProfilesByIndexedAttribute, getProfileTable, getProfileTableActivity
boolean profileTableExists(String profileTableName) throws NullPointerException, FacilityException
Determine if a profile table with the specified name currently exists in the SLEE.
This method is a non-transactional method.
profileTableName
- the name of the profile table.true
if the profile table currently exists, false
otherwise.NullPointerException
- if profileTableName
is null
.FacilityException
- if the existence of the profile table could not be determined due to a system-level failure.ProfileTableDescriptor getProfileTableDescriptor(String profileTableName) throws NullPointerException, UnrecognizedProfileTableNameException, FacilityException
Get the profile table descriptor for the profile table with the specified name.
This method is a non-transactional method.
profileTableName
- the name of the profile table.NullPointerException
- if profileTableName
is null
.UnrecognizedProfileTableNameException
- if a profile table with the specified name does not exist.FacilityException
- if the profile table descriptor could not be returned due to a system-level failure.