Package org.apache.syncope.common.lib.to
Class MembershipTO
- java.lang.Object
-
- org.apache.syncope.common.lib.to.MembershipTO
-
- All Implemented Interfaces:
Serializable
,Attributable
,BaseBean
public class MembershipTO extends Object implements BaseBean, Attributable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MembershipTO.Builder
-
Constructor Summary
Constructors Constructor Description MembershipTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Optional<Attr>
getDerAttr(String schema)
Set<Attr>
getDerAttrs()
String
getGroupKey()
String
getGroupName()
Optional<Attr>
getPlainAttr(String schema)
Set<Attr>
getPlainAttrs()
Optional<Attr>
getVirAttr(String schema)
Set<Attr>
getVirAttrs()
int
hashCode()
void
setGroupKey(String groupKey)
void
setGroupName(String groupName)
String
toString()
-
-
-
Method Detail
-
getGroupKey
public String getGroupKey()
-
setGroupKey
public void setGroupKey(String groupKey)
-
getGroupName
public String getGroupName()
-
setGroupName
public void setGroupName(String groupName)
-
getPlainAttrs
public Set<Attr> getPlainAttrs()
- Specified by:
getPlainAttrs
in interfaceAttributable
-
getPlainAttr
public Optional<Attr> getPlainAttr(String schema)
- Specified by:
getPlainAttr
in interfaceAttributable
-
getDerAttrs
public Set<Attr> getDerAttrs()
- Specified by:
getDerAttrs
in interfaceAttributable
-
getDerAttr
public Optional<Attr> getDerAttr(String schema)
- Specified by:
getDerAttr
in interfaceAttributable
-
getVirAttrs
public Set<Attr> getVirAttrs()
- Specified by:
getVirAttrs
in interfaceAttributable
-
getVirAttr
public Optional<Attr> getVirAttr(String schema)
- Specified by:
getVirAttr
in interfaceAttributable
-
-