Package io.jans.scim.model.scim2.user
Class Email
- java.lang.Object
-
- io.jans.scim.model.scim2.user.Email
-
public class Email extends Object
Represents an e-mail address for a user. See section 4.1.2 of RFC 7643.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Email.Type
-
Constructor Summary
Constructors Constructor Description Email()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getDisplay()
Boolean
getPrimary()
String
getType()
String
getValue()
int
hashCode()
void
setDisplay(String display)
void
setPrimary(Boolean primary)
void
setType(Email.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(Email.Type type)
-
getPrimary
public Boolean getPrimary()
-
setPrimary
public void setPrimary(Boolean primary)
-
-