dnet-hadoop/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/community/Funder.java

53 lines
1.2 KiB
Java
Raw Normal View History

2020-06-15 11:06:18 +02:00
2020-07-29 16:56:46 +02:00
package eu.dnetlib.dhp.schema.dump.oaf.community;
2020-06-15 11:06:18 +02:00
import java.io.Serializable;
2020-08-13 17:06:49 +02:00
/**
2020-08-13 18:23:24 +02:00
* To store information about the funder funding the project related to the result. It has the following parameters: -
* shortName of type String to store the funder short name (e.c. AKA). - name of type String to store the funder name
* (e.c. Akademy of Finland) - fundingStream of type String to store the funding stream - jurisdiction of type String to
* store the jurisdiction of the funder
2020-08-13 17:06:49 +02:00
*/
2020-06-15 11:06:18 +02:00
public class Funder implements Serializable {
private String shortName;
private String name;
private String fundingStream;
private String jurisdiction;
public String getJurisdiction() {
return jurisdiction;
}
public void setJurisdiction(String jurisdiction) {
this.jurisdiction = jurisdiction;
}
public String getShortName() {
return shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getFundingStream() {
return fundingStream;
}
public void setFundingStream(String fundingStream) {
this.fundingStream = fundingStream;
}
}