Package org.gbif.api.model.registry.eml
Class ProjectAward
- java.lang.Object
-
- org.gbif.api.model.registry.eml.ProjectAward
-
public class ProjectAward extends Object
ProjectAward is used to enter information about a funding award associated with a project. The containing project contains the list of investigators and for the award, while the `award` field contains specifics such as the agency name, award number, and funding program identifiers.
-
-
Constructor Summary
Constructors Constructor Description ProjectAward()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addFunderIdentifier(String funderIdentifier)
boolean
equals(Object o)
String
getAwardNumber()
String
getAwardUrl()
List<String>
getFunderIdentifiers()
@NotNull String
getFunderName()
@NotNull String
getTitle()
int
hashCode()
void
setAwardNumber(String awardNumber)
void
setAwardUrl(String awardUrl)
void
setFunderIdentifiers(List<String> funderIdentifiers)
void
setFunderName(String funderName)
void
setTitle(String title)
String
toString()
-
-
-
Constructor Detail
-
ProjectAward
public ProjectAward()
-
-
Method Detail
-
getFunderName
@NotNull public @NotNull String getFunderName()
-
setFunderName
public void setFunderName(String funderName)
-
getFunderIdentifiers
public List<String> getFunderIdentifiers()
-
setFunderIdentifiers
public void setFunderIdentifiers(List<String> funderIdentifiers)
-
addFunderIdentifier
public void addFunderIdentifier(String funderIdentifier)
-
getAwardNumber
@Nullable public String getAwardNumber()
-
setAwardNumber
public void setAwardNumber(@Nullable String awardNumber)
-
getAwardUrl
@Nullable public String getAwardUrl()
-
setAwardUrl
public void setAwardUrl(@Nullable String awardUrl)
-
-