Class PersonsCredentials
- java.lang.Object
-
- com.ellucian.generated.eedm.persons_credentials.v8_0.PersonsCredentials
-
@Generated("jsonschema2pojo") public class PersonsCredentials extends Object
Persons CredentialsA subset of person's data, including only their credentials.
-
-
Field Summary
Fields Modifier and Type Field Description private List<Credential>
credentials
Credentialprivate String
id
IDprivate Metadata
metadata
Metadata
-
Constructor Summary
Constructors Constructor Description PersonsCredentials()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
List<Credential>
getCredentials()
CredentialString
getId()
IDMetadata
getMetadata()
Metadataint
hashCode()
void
setCredentials(List<Credential> credentials)
Credentialvoid
setId(String id)
IDvoid
setMetadata(Metadata metadata)
MetadataString
toString()
PersonsCredentials
withCredentials(List<Credential> credentials)
PersonsCredentials
withId(String id)
PersonsCredentials
withMetadata(Metadata metadata)
-
-
-
Field Detail
-
id
@JsonPropertyDescription("A global identifier of a person.") private String id
IDA global identifier of a person. (Required)
-
credentials
@JsonPropertyDescription("Information that identifies a user to a system such as a network or computer.") private List<Credential> credentials
CredentialInformation that identifies a user to a system such as a network or computer.
-
metadata
@JsonPropertyDescription("Metadata about the JSON payload") private Metadata metadata
MetadataMetadata about the JSON payload
-
-
Method Detail
-
getId
public String getId()
IDA global identifier of a person. (Required)
-
setId
public void setId(String id)
IDA global identifier of a person. (Required)
-
withId
public PersonsCredentials withId(String id)
-
getCredentials
public List<Credential> getCredentials()
CredentialInformation that identifies a user to a system such as a network or computer.
-
setCredentials
public void setCredentials(List<Credential> credentials)
CredentialInformation that identifies a user to a system such as a network or computer.
-
withCredentials
public PersonsCredentials withCredentials(List<Credential> credentials)
-
getMetadata
public Metadata getMetadata()
MetadataMetadata about the JSON payload
-
setMetadata
public void setMetadata(Metadata metadata)
MetadataMetadata about the JSON payload
-
withMetadata
public PersonsCredentials withMetadata(Metadata metadata)
-
-