Package org.apache.syncope.common.lib.to
Class AnyObjectTO
- java.lang.Object
-
- org.apache.syncope.common.lib.to.AnyTO
-
- org.apache.syncope.common.lib.to.AnyObjectTO
-
- All Implemented Interfaces:
Serializable
,Attributable
,BaseBean
,RealmMember
,EntityTO
,GroupableRelatableTO
public class AnyObjectTO extends AnyTO implements GroupableRelatableTO
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AnyObjectTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getDiscriminator()
List<MembershipTO>
getDynMemberships()
Optional<MembershipTO>
getMembership(String groupKey)
List<MembershipTO>
getMemberships()
String
getName()
Optional<RelationshipTO>
getRelationship(String type, String otherKey)
List<RelationshipTO>
getRelationships()
int
hashCode()
void
setName(String name)
-
Methods inherited from class org.apache.syncope.common.lib.to.AnyTO
getAuxClasses, getCreationContext, getCreationDate, getCreator, getDerAttr, getDerAttrs, getDynRealms, getETagValue, getKey, getLastChangeContext, getLastChangeDate, getLastModifier, getPlainAttr, getPlainAttrs, getRealm, getResources, getStatus, getType, getVirAttr, getVirAttrs, setCreationContext, setCreationDate, setCreator, setDiscriminator, setKey, setLastChangeContext, setLastChangeDate, setLastModifier, setRealm, setStatus, setType
-
-
-
-
Method Detail
-
getDiscriminator
public String getDiscriminator()
- Specified by:
getDiscriminator
in classAnyTO
-
getName
public String getName()
-
setName
public void setName(String name)
-
getRelationship
public Optional<RelationshipTO> getRelationship(String type, String otherKey)
- Specified by:
getRelationship
in interfaceGroupableRelatableTO
-
getRelationships
public List<RelationshipTO> getRelationships()
- Specified by:
getRelationships
in interfaceGroupableRelatableTO
-
getMembership
public Optional<MembershipTO> getMembership(String groupKey)
- Specified by:
getMembership
in interfaceGroupableRelatableTO
-
getMemberships
public List<MembershipTO> getMemberships()
- Specified by:
getMemberships
in interfaceGroupableRelatableTO
-
getDynMemberships
public List<MembershipTO> getDynMemberships()
- Specified by:
getDynMemberships
in interfaceGroupableRelatableTO
-
-