Class AnyCR
- java.lang.Object
-
- org.apache.syncope.common.lib.request.AnyCR
-
- All Implemented Interfaces:
Serializable
,Attributable
,BaseBean
,RealmMember
- Direct Known Subclasses:
AnyObjectCR
,GroupCR
,UserCR
public abstract class AnyCR extends Object implements BaseBean, RealmMember
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
AnyCR.Builder<R extends AnyCR,B extends AnyCR.Builder<R,B>>
-
Constructor Summary
Constructors Constructor Description AnyCR()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Set<String>
getAuxClasses()
Optional<Attr>
getDerAttr(String schema)
Set<Attr>
getDerAttrs()
abstract String
getDiscriminator()
Optional<Attr>
getPlainAttr(String schema)
Set<Attr>
getPlainAttrs()
String
getRealm()
Set<String>
getResources()
Optional<Attr>
getVirAttr(String schema)
Set<Attr>
getVirAttrs()
int
hashCode()
void
setDiscriminator(String discriminator)
void
setRealm(String realm)
-
-
-
Method Detail
-
getDiscriminator
public abstract String getDiscriminator()
-
setDiscriminator
public void setDiscriminator(String discriminator)
-
getRealm
public String getRealm()
- Specified by:
getRealm
in interfaceRealmMember
-
setRealm
public void setRealm(String realm)
- Specified by:
setRealm
in interfaceRealmMember
-
getAuxClasses
public Set<String> getAuxClasses()
- Specified by:
getAuxClasses
in interfaceRealmMember
-
getPlainAttr
public Optional<Attr> getPlainAttr(String schema)
- Specified by:
getPlainAttr
in interfaceAttributable
-
getPlainAttrs
public Set<Attr> getPlainAttrs()
- Specified by:
getPlainAttrs
in interfaceAttributable
-
getDerAttr
public Optional<Attr> getDerAttr(String schema)
- Specified by:
getDerAttr
in interfaceAttributable
-
getDerAttrs
public Set<Attr> getDerAttrs()
- Specified by:
getDerAttrs
in interfaceAttributable
-
getVirAttr
public Optional<Attr> getVirAttr(String schema)
- Specified by:
getVirAttr
in interfaceAttributable
-
getVirAttrs
public Set<Attr> getVirAttrs()
- Specified by:
getVirAttrs
in interfaceAttributable
-
getResources
public Set<String> getResources()
- Specified by:
getResources
in interfaceRealmMember
-
-