diff --git a/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/Instance.java b/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/Instance.java index edc6f28..d0974a1 100644 --- a/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/Instance.java +++ b/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/Instance.java @@ -12,9 +12,11 @@ import java.util.List; * type of type String to store the type of the instance as defined in the corresponding dnet vocabulary * (dnet:pubication_resource). It corresponds to the instancetype.classname of the instance to be mapped - url of type * List list of locations where the instance is accessible. It corresponds to url of the instance to be dumped - - * publicationdate of type String to store the publication date of the instance ;// dateofacceptance; - refereed of type - * String to store information abour tthe review status of the instance. Possible values are 'Unknown', + * publicationdate of type String to store the publication date of the instance ;// dateofacceptance; + * - refereed of type + * String to store information abour the review status of the instance. Possible values are 'Unknown', * 'nonPeerReviewed', 'peerReviewed'. It corresponds to refereed.classname of the instance to be dumped + * - articleprocessingcharge of type APC to store the article processing charges possibly associated to the instance */ public class Instance implements Serializable { @@ -28,6 +30,8 @@ public class Instance implements Serializable { private String publicationdate;// dateofacceptance; + private APC articleprocessingcharge; + private String refereed; // peer-review status public String getLicense() { @@ -78,4 +82,11 @@ public class Instance implements Serializable { this.refereed = refereed; } + public APC getArticleprocessingcharge() { + return articleprocessingcharge; + } + + public void setArticleprocessingcharge(APC articleprocessingcharge) { + this.articleprocessingcharge = articleprocessingcharge; + } }