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

63 lines
1.1 KiB
Java
Raw Normal View History

package eu.dnetlib.dhp.schema.oaf;
import java.io.Serializable;
public class Author implements Serializable {
private String name;
private String typology;
private String provenance;
private String trust;
// json containing a Citation or Statistics
private String value;
public String getName() {
return name;
}
2019-10-25 09:53:08 +02:00
public Author setName(String name) {
this.name = name;
2019-10-25 09:53:08 +02:00
return this;
}
public String getTypology() {
return typology;
}
2019-10-25 09:53:08 +02:00
public Author setTypology(String typology) {
this.typology = typology;
2019-10-25 09:53:08 +02:00
return this;
}
public String getProvenance() {
return provenance;
}
2019-10-25 09:53:08 +02:00
public Author setProvenance(String provenance) {
this.provenance = provenance;
2019-10-25 09:53:08 +02:00
return this;
}
public String getTrust() {
return trust;
}
2019-10-25 09:53:08 +02:00
public Author setTrust(String trust) {
this.trust = trust;
2019-10-25 09:53:08 +02:00
return this;
}
public String getValue() {
return value;
}
2019-10-25 09:53:08 +02:00
public Author setValue(String value) {
this.value = value;
2019-10-25 09:53:08 +02:00
return this;
}
}