javax.slee.management
Interface DeployableUnitID


public interface DeployableUnitID

The DeployableUnitID interface is a marker interface to encapsulate the identity of deployable units installed in the SLEE.


Method Summary
 boolean equals(java.lang.Object obj)
          Compare this deployable unit identifer for equality with another object.
 int hashCode()
          Get a hash code value for this deployable unit identifier.
 java.lang.String toString()
          Get a string representation for this deployable unit identifier.
 

Method Detail

equals

public boolean equals(java.lang.Object obj)
Compare this deployable unit identifer for equality with another object.
Overrides:
equals in class java.lang.Object
Parameters:
obj - the object to compare this with.
Returns:
true if obj is a deployable unit identifier with the same identity as this, false otherwise.
See Also:
Object.equals(Object)

hashCode

public int hashCode()
Get a hash code value for this deployable unit identifier.
Overrides:
hashCode in class java.lang.Object
Returns:
a hash code value for this identifier.
See Also:
Object.hashCode()

toString

public java.lang.String toString()
Get a string representation for this deployable unit identifier.
Overrides:
toString in class java.lang.Object
Returns:
a string representation for this identifier.
See Also:
Object.toString()