public interface ProfileTableDescriptor
Profile table metadata descriptor.
All methods defined by this interface are non-transactional.
Modifier and Type | Method and Description |
---|---|
Class<?> |
getProfileLocalInterface()
Get the profile local interface of profile objects returned from the profile table.
|
ProfileSpecificationID |
getProfileSpecification()
Get the component identifier of the profile specification that the profile table was created from.
|
Class<? extends ProfileTable> |
getProfileTableInterface()
Get the profile table interface of the profile table.
|
ProfileSpecificationID getProfileSpecification()
Get the component identifier of the profile specification that the profile table was created from.
Class<? extends ProfileTable> getProfileTableInterface()
Get the profile table interface of the profile table.
This method returns the Class
object of the profile table interface declared by the profile table’s profile specification.
If the profile specification does not declare a profile table interface, then the Class
object for the default SLEE-defined ProfileTable
interface is returned instead.
javax.slee.profile.ProfileTable
class if the profile specification does not declare a profile table interface.Class<?> getProfileLocalInterface()
Get the profile local interface of profile objects returned from the profile table.
This method returns the Class
object of the profile local interface declared by the profile table’s profile specification.
If the profile specification does not declare a profile local interface, then this method returns the Class
object of the profile CMP interface instead.