Project

General

Profile

« Previous | Next » 

Revision 50618

reintroduced field collectedfrom

View differences:

modules/dnet-openaire-exporter/trunk/src/main/java/eu/dnetlib/openaire/exporter/model/datasource/DatasourceDetails.java
102 102
	@ApiModelProperty(position = 23)
103 103
	protected String aggregator = "OPENAIRE";
104 104

  
105
	@ApiModelProperty(position = 24)
106
	protected String collectedfrom;
105 107

  
106
	@ApiModelProperty(position = 23)
108
	@ApiModelProperty(position = 25)
107 109
	private Boolean managed;
108 110

  
109
	@ApiModelProperty(position = 24)
111
	@ApiModelProperty(position = 26)
110 112
	private Set<OrganizationDetails> organizations;
111 113

  
112
	@ApiModelProperty(position = 25)
114
	@ApiModelProperty(position = 27)
113 115
	private Set<IdentitiesDetails> identities;
114 116

  
115 117
	public String getId() {
......
208 210
		return aggregator;
209 211
	}
210 212

  
213
	public String getCollectedfrom() {
214
		return collectedfrom;
215
	}
216

  
211 217
	public Boolean getManaged() {
212 218
		return managed;
213 219
	}
......
340 346
		return this;
341 347
	}
342 348

  
349
	public DatasourceDetails setCollectedfrom(final String collectedfrom) {
350
		this.collectedfrom = collectedfrom;
351
		return this;
352
	}
353

  
354

  
343 355
	public DatasourceDetails setManaged(final Boolean managed) {
344 356
		this.managed = managed;
345 357
		return this;
modules/dnet-openaire-exporter/trunk/src/main/java/eu/dnetlib/openaire/exporter/model/datasource/DatasourceIgnoredProperties.java
10 10
	protected String od_contenttypes;
11 11

  
12 12
	@JsonIgnore
13
	protected String collectedfrom;
14

  
15
	@JsonIgnore
16 13
	protected String provenanceaction;
17 14

  
18 15
	@JsonIgnore
......
68 65
		this.od_contenttypes = od_contenttypes;
69 66
	}
70 67

  
71
	public String getCollectedfrom() {
72
		return collectedfrom;
73
	}
74

  
75
	public void setCollectedfrom(final String collectedfrom) {
76
		this.collectedfrom = collectedfrom;
77
	}
78

  
79 68
	public String getProvenanceaction() {
80 69
		return provenanceaction;
81 70
	}

Also available in: Unified diff