Class Credential
- java.lang.Object
-
- com.ellucian.generated.eedm.sections_maximum.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
-
Field Summary
Fields Modifier and Type Field Description private Credential.Type
type
Typeprivate String
value
Credential
-
Constructor Summary
Constructors Constructor Description Credential()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
Credential.Type
getType()
TypeString
getValue()
Credentialint
hashCode()
void
setType(Credential.Type type)
Typevoid
setValue(String value)
CredentialString
toString()
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 credential used in this section.") private String value
CredentialThe credential used in this section. (Required)
-
-
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()
CredentialThe credential used in this section. (Required)
-
setValue
public void setValue(String value)
CredentialThe credential used in this section. (Required)
-
withValue
public Credential withValue(String value)
-
-