Class PersonSources
- java.lang.Object
-
- com.ellucian.generated.eedm.person_sources.v1_0_0.PersonSources
-
@Generated("jsonschema2pojo") public class PersonSources extends Object
Person SourcesThe valid list of user defined person sources.
-
-
Constructor Summary
Constructors Constructor Description PersonSources()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
String
getCode()
CodeString
getDescription()
DescriptionString
getId()
IDMetadata
getMetadata()
MetadataString
getTitle()
Titleint
hashCode()
void
setCode(String code)
Codevoid
setDescription(String description)
Descriptionvoid
setId(String id)
IDvoid
setMetadata(Metadata metadata)
Metadatavoid
setTitle(String title)
TitleString
toString()
PersonSources
withCode(String code)
PersonSources
withDescription(String description)
PersonSources
withId(String id)
PersonSources
withMetadata(Metadata metadata)
PersonSources
withTitle(String title)
-
-
-
Field Detail
-
metadata
@JsonPropertyDescription("Metadata about the JSON payload") private Metadata metadata
MetadataMetadata about the JSON payload
-
id
@JsonPropertyDescription("The global identifier of the person source.") private String id
IDThe global identifier of the person source. (Required)
-
title
@JsonPropertyDescription("The full name of the person source.") private String title
TitleThe full name of the person source. (Required)
-
description
@JsonPropertyDescription("The description of the person source.") private String description
DescriptionThe description of the person source.
-
code
@JsonPropertyDescription("The code used to identify the person source.") private String code
CodeThe code used to identify the person source.
-
-
Method Detail
-
getMetadata
public Metadata getMetadata()
MetadataMetadata about the JSON payload
-
setMetadata
public void setMetadata(Metadata metadata)
MetadataMetadata about the JSON payload
-
withMetadata
public PersonSources withMetadata(Metadata metadata)
-
getId
public String getId()
IDThe global identifier of the person source. (Required)
-
setId
public void setId(String id)
IDThe global identifier of the person source. (Required)
-
withId
public PersonSources withId(String id)
-
getTitle
public String getTitle()
TitleThe full name of the person source. (Required)
-
setTitle
public void setTitle(String title)
TitleThe full name of the person source. (Required)
-
withTitle
public PersonSources withTitle(String title)
-
getDescription
public String getDescription()
DescriptionThe description of the person source.
-
setDescription
public void setDescription(String description)
DescriptionThe description of the person source.
-
withDescription
public PersonSources withDescription(String description)
-
getCode
public String getCode()
CodeThe code used to identify the person source.
-
setCode
public void setCode(String code)
CodeThe code used to identify the person source.
-
withCode
public PersonSources withCode(String code)
-
-