argos/dmp-backend/web/src/main/java/eu/eudat/models/data/dmp/ResearcherImportModels.java

50 lines
1.3 KiB
Java
Raw Normal View History

2019-03-05 12:59:34 +01:00
package eu.eudat.models.data.dmp;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "researcher")
public class ResearcherImportModels {
private String label;
private String name;
private String id;
private int status;
2019-03-06 16:35:56 +01:00
private String reference;
2019-03-05 12:59:34 +01:00
@XmlElement(name = "label")
2019-03-06 16:35:56 +01:00
public String getResearcherImportLabel() {
2019-03-05 12:59:34 +01:00
return label;
}
2019-03-06 16:35:56 +01:00
public void setResearcherImportLabel(String label) {
2019-03-05 12:59:34 +01:00
this.label = label;
}
@XmlElement(name = "name")
2019-03-06 16:35:56 +01:00
public String getResearcherImportName() {
2019-03-05 12:59:34 +01:00
return name;
}
2019-03-06 16:35:56 +01:00
public void setResearcherImportName(String name) {
2019-03-05 12:59:34 +01:00
this.name = name;
}
@XmlElement(name = "id")
2019-03-06 16:35:56 +01:00
public String getResearcherImportId() {
2019-03-05 12:59:34 +01:00
return id;
}
2019-03-06 16:35:56 +01:00
public void setResearcherImportId(String id) {
2019-03-05 12:59:34 +01:00
this.id = id;
}
@XmlElement(name = "status")
2019-03-06 16:35:56 +01:00
public int getResearcherImportStatus() {
2019-03-05 12:59:34 +01:00
return status;
}
2019-03-06 16:35:56 +01:00
public void setResearcherImportStatus(int status) {
2019-03-05 12:59:34 +01:00
this.status = status;
}
2019-03-06 16:35:56 +01:00
@XmlElement(name = "reference")
public String getResearcherImportReference() { return reference; }
public void setResearcherImportReference(String reference) { this.reference = reference; }
2019-03-05 12:59:34 +01:00
}