Class Credential
- java.lang.Object
-
- com.ellucian.generated.eedm.persons_credentials.v11_0.Credential
-
@Generated("jsonschema2pojo") public class Credential extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCredential.TypeType
-
Constructor Summary
Constructors Constructor Description Credential()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)ObjectgetEndOn()End DateObjectgetStartOn()Start DateCredential.TypegetType()TypeStringgetValue()ValueinthashCode()voidsetEndOn(Object endOn)End DatevoidsetStartOn(Object startOn)Start DatevoidsetType(Credential.Type type)TypevoidsetValue(String value)ValueStringtoString()CredentialwithEndOn(Object endOn)CredentialwithStartOn(Object startOn)CredentialwithType(Credential.Type type)CredentialwithValue(String value)
-
-
-
Field Detail
-
type
@JsonPropertyDescription("The type of credential, such as \"Person ID\" or \"System ID\".") private Credential.Type typeTypeThe type of credential, such as "Person ID" or "System ID". (Required)
-
value
@JsonPropertyDescription("The current value of the credential.") private String valueValueThe current value of the credential. (Required)
-
startOn
@JsonPropertyDescription("The date when the credential starts being valid.") private Object startOnStart DateThe date when the credential starts being valid.
-
endOn
@JsonPropertyDescription("The date when the credential stops being valid.") private Object endOnEnd DateThe date when the credential stops being valid.
-
-
Method Detail
-
getType
public Credential.Type getType()
TypeThe type of credential, such as "Person ID" or "System ID". (Required)
-
setType
public void setType(Credential.Type type)
TypeThe type of credential, such as "Person ID" or "System ID". (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)
-
-