dnet-hadoop/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/sx/bio/pubmed/PMGrant.java

88 lines
1.2 KiB
Java
Raw Normal View History

2021-05-04 14:54:12 +02:00
package eu.dnetlib.dhp.sx.bio.pubmed;
2021-05-04 14:54:12 +02:00
/**
* The type Pm grant.
*
* @author Sandro La Bruzzo
*/
2021-05-04 14:54:12 +02:00
public class PMGrant {
private String grantID;
private String agency;
private String country;
/**
* Instantiates a new Pm grant.
*/
2021-05-04 14:54:12 +02:00
public PMGrant() {
}
/**
* Instantiates a new Pm grant.
*
* @param grantID the grant id
* @param agency the agency
* @param country the country
*/
2021-05-04 14:54:12 +02:00
public PMGrant(String grantID, String agency, String country) {
this.grantID = grantID;
this.agency = agency;
this.country = country;
}
/**
* Gets grant id.
*
* @return the grant id
*/
2021-05-04 14:54:12 +02:00
public String getGrantID() {
return grantID;
}
/**
* Sets grant id.
*
* @param grantID the grant id
*/
2021-05-04 14:54:12 +02:00
public void setGrantID(String grantID) {
this.grantID = grantID;
}
/**
* Gets agency.
*
* @return the agency
*/
2021-05-04 14:54:12 +02:00
public String getAgency() {
return agency;
}
/**
* Sets agency.
*
* @param agency the agency
*/
2021-05-04 14:54:12 +02:00
public void setAgency(String agency) {
this.agency = agency;
}
/**
* Gets country.
*
* @return the country
*/
2021-05-04 14:54:12 +02:00
public String getCountry() {
return country;
}
/**
* Sets country.
*
* @param country the country
*/
2021-05-04 14:54:12 +02:00
public void setCountry(String country) {
this.country = country;
}
}