Class QualifiedUid
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.QualifiedUid
-
public final class QualifiedUid extends java.lang.ObjectA fully-qualified uid. That is, a pair ofObjectClassandUid.
-
-
Constructor Summary
Constructors Constructor Description QualifiedUid(ObjectClass objectClass, Uid uid)Create a QualifiedUid.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Returns true if o is a QualifiedUid and the object class and uid match.ObjectClassgetObjectClass()Returns the object class.UidgetUid()Returns the uid.inthashCode()Returns a hash code based on uidjava.lang.StringtoString()Returns a string representation acceptible for debugging.
-
-
-
Constructor Detail
-
QualifiedUid
public QualifiedUid(ObjectClass objectClass, Uid uid)
Create a QualifiedUid.- Parameters:
objectClass- The object class. May not be null.uid- The uid. May not be null.
-
-
Method Detail
-
getObjectClass
public ObjectClass getObjectClass()
Returns the object class.- Returns:
- The object class.
-
getUid
public Uid getUid()
Returns the uid.- Returns:
- The uid.
-
equals
public boolean equals(java.lang.Object o)
Returns true if o is a QualifiedUid and the object class and uid match.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Returns a hash code based on uid- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
Returns a string representation acceptible for debugging.- Overrides:
toStringin classjava.lang.Object
-
-