Class JPAAMembership
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractGeneratedKeyEntity
-
- org.apache.syncope.core.persistence.jpa.entity.anyobject.JPAAMembership
-
- All Implemented Interfaces:
Serializable,AMembership,Entity,Membership<AnyObject>,Relationship<AnyObject,Group>
@Entity public class JPAAMembership extends AbstractGeneratedKeyEntity implements AMembership
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringTABLE-
Fields inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
LOG
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Constructor Summary
Constructors Constructor Description JPAAMembership()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnyObjectgetLeftEnd()GroupgetRightEnd()MembershipTypegetType()voidsetLeftEnd(AnyObject leftEnd)voidsetRightEnd(Group rightEnd)voidsetType(RelationshipType type)-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractGeneratedKeyEntity
getKey, setKey
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
checkImplementationType, checkType, equals, hashCode, toString
-
-
-
-
Field Detail
-
TABLE
public static final String TABLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public MembershipType getType()
- Specified by:
getTypein interfaceMembership<AnyObject>- Specified by:
getTypein interfaceRelationship<AnyObject,Group>
-
setType
public void setType(RelationshipType type)
- Specified by:
setTypein interfaceRelationship<AnyObject,Group>
-
getLeftEnd
public AnyObject getLeftEnd()
- Specified by:
getLeftEndin interfaceRelationship<AnyObject,Group>
-
setLeftEnd
public void setLeftEnd(AnyObject leftEnd)
- Specified by:
setLeftEndin interfaceRelationship<AnyObject,Group>
-
getRightEnd
public Group getRightEnd()
- Specified by:
getRightEndin interfaceRelationship<AnyObject,Group>
-
setRightEnd
public void setRightEnd(Group rightEnd)
- Specified by:
setRightEndin interfaceRelationship<AnyObject,Group>
-
-