Package | Description |
---|---|
javax.slee.management |
This package defines the SLEE external management interfaces.
|
javax.slee.profile |
This package defines the classes and interfaces for profiles and profile-related activities and events.
|
javax.slee.resource |
This package defines the classes and interfaces for resource adaptor components.
|
Modifier and Type | Method and Description |
---|---|
ObjectName |
ProfileProvisioningMBean.createProfile(String profileTableName,
String newProfileName)
Create a new profile with the specified name in the specified profile table.
|
ObjectName |
ProfileProvisioningMBean.getDefaultProfile(String profileTableName)
Get the JMX Object Name of the Profile MBean for the default profile of a profile
table.
|
ObjectName |
ProfileProvisioningMBean.getProfile(String profileTableName,
String profileName)
Get the JMX Object Name of the Profile MBean for an existing profile.
|
Collection |
ProfileProvisioningMBean.getProfiles(String profileTableName)
Get a collection of
ProfileID objects that identify all the profiles
contained in the specified profile table. |
Collection |
ProfileProvisioningMBean.getProfilesByAttribute(String profileTableName,
String attributeName,
Object attributeValue)
Get a collection of
ProfileID objects that identify the profiles contained
in the specified profile table where the specified profile attribute is set to the specified
value. |
Collection |
ProfileProvisioningMBean.getProfilesByDynamicQuery(String profileTableName,
QueryExpression expr)
Get a collection of
ProfileID object that identify the profiles contained
in the specified profile table where the profiles satisfy the specified query
expression. |
Collection |
ProfileProvisioningMBean.getProfilesByIndexedAttribute(String profileTableName,
String attributeName,
Object attributeValue)
Deprecated.
Replaced with
getProfilesByAttribute(profileTableName, attributeName, attributeValue) .
as SLEE 1.1 does not require an attribute to be indexed in order to perform
searches against that attribute. |
Collection |
ProfileProvisioningMBean.getProfilesByStaticQuery(String profileTableName,
String queryName,
Object[] parameters)
Get a collection of
ProfileID objects that identify the profiles contained
in the specified profile table where the profiles satisfy a particular search criteria. |
ProfileSpecificationID |
ProfileProvisioningMBean.getProfileSpecification(String profileTableName)
Get the component identifier of the profile specification that a profile table
was created with.
|
ObjectName |
ProfileProvisioningMBean.getProfileTableUsageMBean(String profileTableName)
Get the JMX Object Name of a
ProfileTableUsageMBean object for a profile
table. |
void |
ProfileProvisioningMBean.removeProfile(String profileTableName,
String profileName)
Remove a profile from a profile table.
|
void |
ProfileProvisioningMBean.removeProfileTable(String profileTableName)
Remove a profile table.
|
void |
ProfileProvisioningMBean.renameProfileTable(String oldProfileTableName,
String newProfileTableName)
Rename a profile table.
|
Modifier and Type | Method and Description |
---|---|
ProfileID |
ProfileFacility.getProfileByIndexedAttribute(String profileTableName,
String attributeName,
Object attributeValue)
Deprecated.
Replaced with
,
which returns a Profile Local Interface object that can be used to interact
with the profile directly, rather than a profile identifier which requires a
secondary lookup via a get-profile-CMP method. |
Collection |
ProfileFacility.getProfiles(String profileTableName)
Deprecated.
Replaced with
,
which returns a collection of Profile Local Interface objects that can be
used to interact with the profiles directly, rather than a collection of
profile identifiers which require a secondary lookup via a get-profile-CMP
method. |
Collection |
ProfileFacility.getProfilesByIndexedAttribute(String profileTableName,
String attributeName,
Object attributeValue)
Deprecated.
Replaced with
,
which returns a collection of Profile Local Interface objects that can be
used to interact with the profiles directly, rather than a collection of
profile identifiers which require a secondary lookup via a get-profile-CMP
method. |
ProfileTable |
ProfileContext.getProfileTable(String profileTableName)
Get a
ProfileTable object for a profile table. |
ProfileTable |
ProfileFacility.getProfileTable(String profileTableName)
Get a
ProfileTable object for a profile table. |
ProfileTableActivity |
ProfileFacility.getProfileTableActivity(String profileTableName)
Get a
ProfileTableActivity object for a profile table. |
Modifier and Type | Method and Description |
---|---|
ProfileTable |
ResourceAdaptorContext.getProfileTable(String profileTableName)
Get a
ProfileTable object for a profile table. |