Class Credential
- java.lang.Object
-
- com.ellucian.generated.eedm.persons.v8_0.Credential
-
@Generated("jsonschema2pojo") public class Credential extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Credential.Type
Type
-
Constructor Summary
Constructors Constructor Description Credential()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
Object
getEndOn()
End DateObject
getStartOn()
Start DateCredential.Type
getType()
TypeString
getValue()
Valueint
hashCode()
void
setEndOn(Object endOn)
End Datevoid
setStartOn(Object startOn)
Start Datevoid
setType(Credential.Type type)
Typevoid
setValue(String value)
ValueString
toString()
Credential
withEndOn(Object endOn)
Credential
withStartOn(Object startOn)
Credential
withType(Credential.Type type)
Credential
withValue(String value)
-
-
-
Field Detail
-
type
@JsonPropertyDescription("The type of credential, such as \"Person ID\", \"System ID\", etc.") private Credential.Type type
TypeThe type of credential, such as "Person ID", "System ID", etc. (Required)
-
value
@JsonPropertyDescription("The current value of the credential.") private String value
ValueThe current value of the credential. (Required)
-
startOn
@JsonPropertyDescription("The date when the credential starts being valid.") private Object startOn
Start DateThe date when the credential starts being valid.
-
endOn
@JsonPropertyDescription("The date when the credential stops being valid.") private Object endOn
End DateThe date when the credential stops being valid.
-
-
Method Detail
-
getType
public Credential.Type getType()
TypeThe type of credential, such as "Person ID", "System ID", etc. (Required)
-
setType
public void setType(Credential.Type type)
TypeThe type of credential, such as "Person ID", "System ID", etc. (Required)
-
withType
public Credential withType(Credential.Type type)
-
getValue
public String getValue()
ValueThe current value of the credential. (Required)
-
setValue
public void setValue(String value)
ValueThe current value of the credential. (Required)
-
withValue
public Credential withValue(String value)
-
getStartOn
public Object getStartOn()
Start DateThe date when the credential starts being valid.
-
setStartOn
public void setStartOn(Object startOn)
Start DateThe date when the credential starts being valid.
-
withStartOn
public Credential withStartOn(Object startOn)
-
getEndOn
public Object getEndOn()
End DateThe date when the credential stops being valid.
-
setEndOn
public void setEndOn(Object endOn)
End DateThe date when the credential stops being valid.
-
withEndOn
public Credential withEndOn(Object endOn)
-
-