Package org.gbif.api.model.registry.eml
Class Project
- java.lang.Object
-
- org.gbif.api.model.registry.eml.Project
-
- All Implemented Interfaces:
Serializable
public class Project extends Object implements Serializable
A dataset can be part of a project. A project can have a unique identifier, used to link datasets associated with the same project.- See Also:
- Serialized Form
-
-
Method Summary
-
-
-
Method Detail
-
getAbstract
public String getAbstract()
-
setAbstract
public void setAbstract(String abstract_)
-
getContacts
public List<Contact> getContacts()
-
setContacts
public void setContacts(List<Contact> contacts)
-
getDesignDescription
public String getDesignDescription()
-
setDesignDescription
public void setDesignDescription(String designDescription)
-
getFunding
public String getFunding()
-
setFunding
public void setFunding(String funding)
-
getAwards
public List<ProjectAward> getAwards()
-
setAwards
public void setAwards(List<ProjectAward> awards)
-
addAward
public void addAward(ProjectAward award)
-
getStudyAreaDescription
public String getStudyAreaDescription()
-
setStudyAreaDescription
public void setStudyAreaDescription(String studyAreaDescription)
-
getIdentifier
@Nullable public String getIdentifier()
A unique identifier for the project. Used to link multiple datasets associated with the same project.- Returns:
- the unique identifier for the project
-
setIdentifier
public void setIdentifier(String identifier)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getRelatedProjects
public List<RelatedProject> getRelatedProjects()
-
setRelatedProjects
public void setRelatedProjects(List<RelatedProject> relatedProjects)
-
addRelatedProject
public void addRelatedProject(RelatedProject relatedProject)
-
addContact
public void addContact(Contact contact)
Add contact to Contact List.
-
-