Class BindingDescriptorDescriptor
- java.lang.Object
-
- javax.slee.management.ComponentDescriptor
-
- com.opencloud.rhino.management.deployment.BindingDescriptorDescriptor
-
- All Implemented Interfaces:
Serializable
,VendorExtensions
public class BindingDescriptorDescriptor extends ComponentDescriptor
This class provides access to deployment-specific attributes that describe an installed binding descriptor.
- Since:
- Rhino 2.4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BindingDescriptorDescriptor(BindingDescriptorID component, DeployableUnitID deployableUnit, String source)
BindingDescriptorDescriptor(BindingDescriptorID component, DeployableUnitID deployableUnit, String source, LibraryID[] libraries, SbbID[] sbbs, SbbPartID[] sbbParts, ProfileSpecificationID[] profileSpecs)
Create a new binding descriptor component descriptor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProfileSpecificationID[]
getProfileSpecifications()
Get the component identifiers of the profile specifications referenced by this binding descriptor.SbbPartID[]
getSbbParts()
Get the component identifiers of the SBB parts referenced by this binding descriptor.SbbID[]
getSbbs()
Get the component identifiers of the SBBs referenced by this binding descriptor.-
Methods inherited from class javax.slee.management.ComponentDescriptor
disableVendorDataDeserialization, disableVendorDataSerialization, enableVendorDataDeserialization, enableVendorDataSerialization, equals, getDeployableUnit, getID, getLibraries, getName, getSource, getVendor, getVendorData, getVersion, hashCode, setVendorData
-
-
-
-
Constructor Detail
-
BindingDescriptorDescriptor
@Deprecated public BindingDescriptorDescriptor(BindingDescriptorID component, DeployableUnitID deployableUnit, String source)
Deprecated.Create a new binding descriptor component descriptor.
- Parameters:
component
- the identifier of the component.deployableUnit
- the identifier of the deployable unit from which the component was installed.source
- the name of the binding descriptor file from which this component was installed.
-
BindingDescriptorDescriptor
public BindingDescriptorDescriptor(BindingDescriptorID component, DeployableUnitID deployableUnit, String source, LibraryID[] libraries, SbbID[] sbbs, SbbPartID[] sbbParts, ProfileSpecificationID[] profileSpecs)
Create a new binding descriptor component descriptor.
- Parameters:
component
- the identifier of the component.deployableUnit
- the identifier of the deployable unit from which the component was installed.source
- the name of the binding descriptor file from which this component was installed.libraries
- the component identifiers of the libraries referenced by this binding descriptor.sbbs
- the component identifiers of the SBBs referenced by this binding descriptor.sbbParts
- the component identifiers of the SBB parts referenced by this binding descriptor.profileSpecs
- the component identifiers of the profile specifications referenced by this binding descriptor.
-
-
Method Detail
-
getSbbs
public SbbID[] getSbbs()
Get the component identifiers of the SBBs referenced by this binding descriptor.
- Returns:
- the component identifiers of the SBBs referenced by this binding descriptor.
-
getSbbParts
public SbbPartID[] getSbbParts()
Get the component identifiers of the SBB parts referenced by this binding descriptor.
- Returns:
- the component identifiers of the SBB parts referenced by this binding descriptor.
-
getProfileSpecifications
public ProfileSpecificationID[] getProfileSpecifications()
Get the component identifiers of the profile specifications referenced by this binding descriptor.
- Returns:
- the component identifiers of the profile specifications referenced by this binding descriptor.
-
-