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>credentialsCredentialprivate StringidIDprivate MetadatametadataMetadata
-
Constructor Summary
Constructors Constructor Description PersonsCredentials()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)List<Credential>getCredentials()CredentialStringgetId()IDMetadatagetMetadata()MetadatainthashCode()voidsetCredentials(List<Credential> credentials)CredentialvoidsetId(String id)IDvoidsetMetadata(Metadata metadata)MetadataStringtoString()PersonsCredentialswithCredentials(List<Credential> credentials)PersonsCredentialswithId(String id)PersonsCredentialswithMetadata(Metadata metadata)
-
-
-
Field Detail
-
id
@JsonPropertyDescription("A global identifier of a person.") private String idIDA 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> credentialsCredentialInformation that identifies a user to a system such as a network or computer.
-
metadata
@JsonPropertyDescription("Metadata about the JSON payload") private Metadata metadataMetadataMetadata 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)
-
-