Uses of Class
org.gbif.api.model.registry.Contact
-
Packages that use Contact Package Description org.gbif.api.model.registry org.gbif.api.model.registry.eml org.gbif.api.service.registry org.gbif.api.util -
-
Uses of Contact in org.gbif.api.model.registry
Methods in org.gbif.api.model.registry that return types with arguments of type Contact Modifier and Type Method Description @NotNull List<Contact>
Contactable. getContacts()
List<Contact>
Dataset. getContacts()
List<Contact>
Installation. getContacts()
List<Contact>
Network. getContacts()
List<Contact>
Node. getContacts()
List<Contact>
Organization. getContacts()
Methods in org.gbif.api.model.registry with parameters of type Contact Modifier and Type Method Description boolean
Contact. lenientEquals(Contact contact)
This implementation of theequals(Object)
method does only check business equality and disregards automatically set and maintained fields likecreatedBy, key
and others.Method parameters in org.gbif.api.model.registry with type arguments of type Contact Modifier and Type Method Description void
Contactable. setContacts(List<Contact> contacts)
void
Dataset. setContacts(List<Contact> contacts)
void
Installation. setContacts(List<Contact> contacts)
void
Network. setContacts(List<Contact> contacts)
void
Node. setContacts(List<Contact> contacts)
void
Organization. setContacts(List<Contact> contacts)
-
Uses of Contact in org.gbif.api.model.registry.eml
Methods in org.gbif.api.model.registry.eml that return types with arguments of type Contact Modifier and Type Method Description List<Contact>
Project. getContacts()
List<Contact>
RelatedProject. getContacts()
Methods in org.gbif.api.model.registry.eml with parameters of type Contact Modifier and Type Method Description void
Project. addContact(Contact contact)
Add contact to Contact List.void
RelatedProject. addContact(Contact contact)
Method parameters in org.gbif.api.model.registry.eml with type arguments of type Contact Modifier and Type Method Description void
Project. setContacts(List<Contact> contacts)
void
RelatedProject. setContacts(List<Contact> contacts)
Constructor parameters in org.gbif.api.model.registry.eml with type arguments of type Contact Constructor Description Project(String title, String identifier, List<Contact> contacts, String abstract_, String funding, String studyAreaDescription, String designDescription)
-
Uses of Contact in org.gbif.api.service.registry
Methods in org.gbif.api.service.registry that return types with arguments of type Contact Modifier and Type Method Description List<Contact>
ContactService. listContacts(@NotNull UUID targetEntityKey)
List all contacts of a target entity.Methods in org.gbif.api.service.registry with parameters of type Contact Modifier and Type Method Description int
ContactService. addContact(@NotNull UUID targetEntityKey, @NotNull @Valid Contact contact)
Add a new Contact to a target entity.void
ContactService. updateContact(@NotNull UUID targetEntityKey, @NotNull @Valid Contact contact)
Updates the given contact for the target entity. -
Uses of Contact in org.gbif.api.util
Methods in org.gbif.api.util that return Contact Modifier and Type Method Description Contact
ContactAdapter. getAdministrativeContact()
Get the AdministrativeContactContact
.Contact
ContactAdapter. getFirstPreferredType(ContactType type)
Get the first primaryContact
for the provided type.Contact
ContactAdapter. getResourceCreator()
Get the ResourceCreatorContact
.Methods in org.gbif.api.util that return types with arguments of type Contact Modifier and Type Method Description List<Contact>
ContactAdapter. getAllType(ContactType type)
Get allContact
for the provided type.List<Contact>
ContactAdapter. getAssociatedParties()
Get the list of AssociatedParties.List<Contact>
ContactAdapter. getContacts()
Get the list ofContact
of type ContactType.ADMINISTRATIVE_POINT_OF_CONTACT.List<Contact>
ContactAdapter. getCreators()
Get the list ofContact
of type ContactType.ORIGINATOR.List<Contact>
ContactAdapter. getFilteredContacts(ContactType... types)
Filter contacts based on the provided contact types.List<Contact>
ContactAdapter. getMetadataProviders()
Get the list ofContact
of type ContactType.METADATA_AUTHOR.Methods in org.gbif.api.util with parameters of type Contact Modifier and Type Method Description static String
ContactAdapter. formatContactName(Contact contact)
Format the name of the contact as "FirstName LastName".static String
CitationGenerator. getAuthorName(Contact creator)
Given aContact
, generates a String for that contact for citation purpose.Method parameters in org.gbif.api.util with type arguments of type Contact Modifier and Type Method Description static List<CitationContact>
CitationGenerator. getAuthors(List<Contact> contacts)
Extracts an ordered list of unique authors from a list of contacts.static List<CitationContact>
CitationGenerator. getAuthorsForCamtrap(List<Contact> contacts)
Constructor parameters in org.gbif.api.util with type arguments of type Contact Constructor Description ContactAdapter(List<Contact> contacts)
-