Package org.gbif.api.model.registry.eml
Class RelatedProject
- java.lang.Object
-
- org.gbif.api.model.registry.eml.RelatedProject
-
public class RelatedProject extends Object
A dedicated class for related projects. UnlessProject
it only has essential fields.
-
-
Constructor Summary
Constructors Constructor Description RelatedProject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addContact(Contact contact)
boolean
equals(Object o)
String
getAbstract()
List<Contact>
getContacts()
String
getIdentifier()
String
getTitle()
int
hashCode()
void
setAbstract(String abstract_)
void
setContacts(List<Contact> contacts)
void
setIdentifier(String identifier)
void
setTitle(String title)
String
toString()
-
-
-
Constructor Detail
-
RelatedProject
public RelatedProject()
-
-
Method Detail
-
getIdentifier
@Nullable public String getIdentifier()
-
setIdentifier
public void setIdentifier(String identifier)
-
getContacts
public List<Contact> getContacts()
-
setContacts
public void setContacts(List<Contact> contacts)
-
addContact
public void addContact(Contact contact)
-
getAbstract
@Nullable public String getAbstract()
-
setAbstract
public void setAbstract(String abstract_)
-
-