Package io.jans.scim.model.scim2.user
Class InstantMessagingAddress
- java.lang.Object
-
- io.jans.scim.model.scim2.user.InstantMessagingAddress
-
public class InstantMessagingAddress extends Object
Represents an Instant messaging address for a user. See section 4.1.2 of RFC 7643.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InstantMessagingAddress.Type
-
Constructor Summary
Constructors Constructor Description InstantMessagingAddress()
-
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(InstantMessagingAddress.Type type)
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)
-
setType
public void setType(InstantMessagingAddress.Type type)
-
getPrimary
public Boolean getPrimary()
-
setPrimary
public void setPrimary(Boolean primary)
-
-