Compare commits
2 Commits
master
...
scholix_sm
Author | SHA1 | Date |
---|---|---|
Sandro La Bruzzo | b48a0a4541 | |
Sandro La Bruzzo | 8ccd24b34b |
2
pom.xml
2
pom.xml
|
@ -5,7 +5,7 @@
|
|||
<groupId>eu.dnetlib.dhp</groupId>
|
||||
<artifactId>dhp-schemas</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>6.1.3-SNAPSHOT</version>
|
||||
<version>6.1.3-FLAT-SCHOLIX</version>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
|
|
|
@ -0,0 +1,151 @@
|
|||
package eu.dnetlib.dhp.schema.sx.scholix.flat;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ScholixFlat {
|
||||
|
||||
private String identifier;
|
||||
private String relationType;
|
||||
private String sourceId;
|
||||
private String sourceType;
|
||||
private String sourceSubType;
|
||||
private List<String> sourcePid;
|
||||
private List<String> sourcePidType;
|
||||
private List<String> sourcePublisher;
|
||||
private String targetId;
|
||||
private String targetType;
|
||||
private String targetSubType;
|
||||
private List<String> targetPid;
|
||||
private List<String> targetPidType;
|
||||
private List<String> targetPublisher;
|
||||
private List<String> linkProviders;
|
||||
private String publicationDate;
|
||||
|
||||
public String getIdentifier() {
|
||||
return identifier;
|
||||
}
|
||||
|
||||
public void setIdentifier(String identifier) {
|
||||
this.identifier = identifier;
|
||||
}
|
||||
|
||||
public String getRelationType() {
|
||||
return relationType;
|
||||
}
|
||||
|
||||
public void setRelationType(String relationType) {
|
||||
this.relationType = relationType;
|
||||
}
|
||||
|
||||
public String getSourceId() {
|
||||
return sourceId;
|
||||
}
|
||||
|
||||
public void setSourceId(String sourceId) {
|
||||
this.sourceId = sourceId;
|
||||
}
|
||||
|
||||
public String getSourceType() {
|
||||
return sourceType;
|
||||
}
|
||||
|
||||
public void setSourceType(String sourceType) {
|
||||
this.sourceType = sourceType;
|
||||
}
|
||||
|
||||
public String getSourceSubType() {
|
||||
return sourceSubType;
|
||||
}
|
||||
|
||||
public void setSourceSubType(String sourceSubType) {
|
||||
this.sourceSubType = sourceSubType;
|
||||
}
|
||||
|
||||
public List<String> getSourcePid() {
|
||||
return sourcePid;
|
||||
}
|
||||
|
||||
public void setSourcePid(List<String> sourcePid) {
|
||||
this.sourcePid = sourcePid;
|
||||
}
|
||||
|
||||
public List<String> getSourcePidType() {
|
||||
return sourcePidType;
|
||||
}
|
||||
|
||||
public void setSourcePidType(List<String> sourcePidType) {
|
||||
this.sourcePidType = sourcePidType;
|
||||
}
|
||||
|
||||
public List<String> getSourcePublisher() {
|
||||
return sourcePublisher;
|
||||
}
|
||||
|
||||
public void setSourcePublisher(List<String> sourcePublisher) {
|
||||
this.sourcePublisher = sourcePublisher;
|
||||
}
|
||||
|
||||
public String getTargetId() {
|
||||
return targetId;
|
||||
}
|
||||
|
||||
public void setTargetId(String targetId) {
|
||||
this.targetId = targetId;
|
||||
}
|
||||
|
||||
public String getTargetType() {
|
||||
return targetType;
|
||||
}
|
||||
|
||||
public void setTargetType(String targetType) {
|
||||
this.targetType = targetType;
|
||||
}
|
||||
|
||||
public String getTargetSubType() {
|
||||
return targetSubType;
|
||||
}
|
||||
|
||||
public void setTargetSubType(String targetSubType) {
|
||||
this.targetSubType = targetSubType;
|
||||
}
|
||||
|
||||
public List<String> getTargetPid() {
|
||||
return targetPid;
|
||||
}
|
||||
|
||||
public void setTargetPid(List<String> targetPid) {
|
||||
this.targetPid = targetPid;
|
||||
}
|
||||
|
||||
public List<String> getTargetPidType() {
|
||||
return targetPidType;
|
||||
}
|
||||
|
||||
public void setTargetPidType(List<String> targetPidType) {
|
||||
this.targetPidType = targetPidType;
|
||||
}
|
||||
|
||||
public List<String> getTargetPublisher() {
|
||||
return targetPublisher;
|
||||
}
|
||||
|
||||
public void setTargetPublisher(List<String> targetPublisher) {
|
||||
this.targetPublisher = targetPublisher;
|
||||
}
|
||||
|
||||
public List<String> getLinkProviders() {
|
||||
return linkProviders;
|
||||
}
|
||||
|
||||
public void setLinkProviders(List<String> linkProviders) {
|
||||
this.linkProviders = linkProviders;
|
||||
}
|
||||
|
||||
public String getPublicationDate() {
|
||||
return publicationDate;
|
||||
}
|
||||
|
||||
public void setPublicationDate(String publicationDate) {
|
||||
this.publicationDate = publicationDate;
|
||||
}
|
||||
}
|
|
@ -11,7 +11,7 @@ import eu.dnetlib.dhp.schema.sx.scholix.ScholixIdentifier;
|
|||
public class ScholixSummary implements Serializable {
|
||||
private String id;
|
||||
private List<ScholixIdentifier> localIdentifier;
|
||||
private Typology typology;
|
||||
private String typology;
|
||||
private String subType;
|
||||
private List<String> title;
|
||||
private List<String> author;
|
||||
|
@ -40,11 +40,11 @@ public class ScholixSummary implements Serializable {
|
|||
this.localIdentifier = localIdentifier;
|
||||
}
|
||||
|
||||
public Typology getTypology() {
|
||||
public String getTypology() {
|
||||
return typology;
|
||||
}
|
||||
|
||||
public void setTypology(Typology typology) {
|
||||
public void setTypology(String typology) {
|
||||
this.typology = typology;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue