Package io.jans.scim.model.scim2.user
Class Photo
- java.lang.Object
-
- io.jans.scim.model.scim2.user.Photo
-
public class Photo extends Object
A class used to represent the URI of a user's photo. See section 4.1.2 of RFC 7643.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPhoto.Type
-
Constructor Summary
Constructors Constructor Description Photo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplay()BooleangetPrimary()StringgetType()StringgetValue()voidsetDisplay(String display)voidsetPrimary(Boolean primary)voidsetType(Photo.Type type)voidsetType(String type)voidsetValue(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)
-
setType
public void setType(Photo.Type type)
-
getPrimary
public Boolean getPrimary()
-
setPrimary
public void setPrimary(Boolean primary)
-
-