Package io.jans.scim.model.scim2.user
Class Role
- java.lang.Object
-
- io.jans.scim.model.scim2.user.Role
-
public class Role extends Object
Represents a role for a user. See section 4.1.2 of RFC 7643.
-
-
Constructor Summary
Constructors Constructor Description Role()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplay()
Boolean
getPrimary()
String
getType()
String
getValue()
void
setDisplay(String display)
void
setPrimary(Boolean primary)
void
setType(String type)
void
setValue(String value)
-
-
-
Method Detail
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getDisplay
public String getDisplay()
-
setDisplay
public void setDisplay(String display)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getPrimary
public Boolean getPrimary()
-
setPrimary
public void setPrimary(Boolean primary)
-
-