Package io.jans.scim.model.scim2.user
Class Group
- java.lang.Object
-
- io.jans.scim.model.scim2.user.Group
-
public class Group extends Object
Represents a group to which a user belongs. See section 4.1.2 of RFC 7643.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Group.Type
-
Constructor Summary
Constructors Constructor Description Group()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getDisplay()
String
getRef()
String
getType()
String
getValue()
int
hashCode()
void
setDisplay(String display)
void
setRef(String ref)
void
setType(Group.Type type)
void
setType(String type)
void
setValue(String value)
-
-
-
Method Detail
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getRef
public String getRef()
-
setRef
public void setRef(String ref)
-
getDisplay
public String getDisplay()
-
setDisplay
public void setDisplay(String display)
-
getType
public String getType()
-
setType
public void setType(String type)
-
setType
public void setType(Group.Type type)
-
-