Package io.jans.scim.model.scim2.user
Class X509Certificate
- java.lang.Object
-
- io.jans.scim.model.scim2.user.X509Certificate
-
public class X509Certificate extends Object
Represents a DER-encoded X.509 certificate associated to a User. See section 4.1.2 of RFC 7643.
-
-
Constructor Summary
Constructors Constructor Description X509Certificate()
-
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)
-
-