Package com.opencloud.slee
Class BindingDescriptorID
- java.lang.Object
-
- javax.slee.ComponentID
-
- com.opencloud.slee.BindingDescriptorID
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Comparable
public class BindingDescriptorID extends ComponentID
The
BindingDescriptorID
class encapsulates binding descriptor identity. ABindingDescriptorID
object is also known as a binding descriptor identifier.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BindingDescriptorID(String name, String vendor, String version)
Create a new binding descriptor identifier.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
Create a copy of this binding descriptor identifier.int
compareTo(Object obj)
-
Methods inherited from class javax.slee.ComponentID
equals, getName, getVendor, getVersion, hashCode, toString
-
-
-
-
Constructor Detail
-
BindingDescriptorID
public BindingDescriptorID(String name, String vendor, String version)
Create a new binding descriptor identifier.
- Parameters:
name
- the name of the binding descriptor.vendor
- the vendor of the binding descriptor.version
- the version of the binding descriptor.- Throws:
NullPointerException
- if any argument isnull
.
-
-
Method Detail
-
compareTo
public final int compareTo(Object obj)
- Specified by:
compareTo
in interfaceComparable
- Specified by:
compareTo
in classComponentID
-
clone
public Object clone()
Create a copy of this binding descriptor identifier.
- Returns:
- a copy of this binding descriptor identifier.
- See Also:
Object.clone()
-
-