Class ConnectorObject
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.ConnectorObject
-
public final class ConnectorObject extends java.lang.Object
A ConnectorObject represents an object (e.g., an Account or a Group) on the target resource. Each ConnectorObject represents a resource object as a UID and a bag of attributes. The developer of a Connector will use aConnectorObjectBuilder
to construct instances of ConnectorObject.
-
-
Constructor Summary
Constructors Constructor Description ConnectorObject(ObjectClass objectClass, java.util.Set<? extends Attribute> set)
Public only for serialization; please useConnectorObjectBuilder
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Attribute
getAttributeByName(java.lang.String name)
Get an attribute by if it exists else null.java.util.Set<Attribute>
getAttributes()
Get the set of attributes that represent this object.Name
getName()
Gets theName
of the object.ObjectClass
getObjectClass()
Gets theObjectClass
for this object.Uid
getUid()
Get the native identifier for this object.int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
ConnectorObject
public ConnectorObject(ObjectClass objectClass, java.util.Set<? extends Attribute> set)
Public only for serialization; please useConnectorObjectBuilder
.
-
-
Method Detail
-
getAttributes
public java.util.Set<Attribute> getAttributes()
Get the set of attributes that represent this object. This includes theUid
and allOperationalAttributes
.
-
getAttributeByName
public Attribute getAttributeByName(java.lang.String name)
Get an attribute by if it exists else null.
-
getUid
public Uid getUid()
Get the native identifier for this object.
-
getObjectClass
public ObjectClass getObjectClass()
Gets theObjectClass
for this object.
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-