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

46 lines
671 B
Java
Raw Normal View History

2020-09-07 11:40:16 +02:00
package eu.dnetlib.dhp.schema.dump.oaf;
import java.io.Serializable;
public class Project implements Serializable {
2020-09-07 11:40:16 +02:00
protected String id;// OpenAIRE id
protected String code;
2020-09-07 11:40:16 +02:00
protected String acronym;
2020-09-07 11:40:16 +02:00
protected String title;
2020-09-07 11:40:16 +02:00
public String getId() {
return id;
}
2020-09-07 11:40:16 +02:00
public void setId(String id) {
this.id = id;
}
2020-09-07 11:40:16 +02:00
public String getCode() {
return code;
}
2020-09-07 11:40:16 +02:00
public void setCode(String code) {
this.code = code;
}
2020-09-07 11:40:16 +02:00
public String getAcronym() {
return acronym;
}
2020-09-07 11:40:16 +02:00
public void setAcronym(String acronym) {
this.acronym = acronym;
}
2020-09-07 11:40:16 +02:00
public String getTitle() {
return title;
}
2020-09-07 11:40:16 +02:00
public void setTitle(String title) {
this.title = title;
}
}