-
- All Superinterfaces:
Entity,Serializable
- All Known Subinterfaces:
AMembership,ARelationship,Membership<L>,UMembership,URelationship
- All Known Implementing Classes:
JPAAMembership,JPAARelationship,JPAUMembership,JPAURelationship
public interface Relationship<L extends Any<?>,R extends Any<?>> extends Entity
-
-
Field Summary
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LgetLeftEnd()RgetRightEnd()RelationshipTypegetType()voidsetLeftEnd(L leftEnd)voidsetRightEnd(R rightEnd)voidsetType(RelationshipType type)
-
-
-
Method Detail
-
getType
RelationshipType getType()
-
setType
void setType(RelationshipType type)
-
getLeftEnd
L getLeftEnd()
-
setLeftEnd
void setLeftEnd(L leftEnd)
-
getRightEnd
R getRightEnd()
-
setRightEnd
void setRightEnd(R rightEnd)
-
-