Project

General

Profile

1
package eu.dnetlib.openaire.exporter.model.datasource;
2

    
3
import com.fasterxml.jackson.annotation.JsonIgnore;
4

    
5
public abstract class ApiIgnoredProperties {
6

    
7
	@JsonIgnore
8
	protected Boolean active = false;
9

    
10
	@JsonIgnore
11
	protected String metadataIdentifierPath;
12

    
13
	@JsonIgnore
14
	protected String lastCollectionMdid;
15

    
16
	@JsonIgnore
17
	protected String lastAggregationMdid;
18

    
19
	@JsonIgnore
20
	protected String lastDownloadObjid;
21

    
22
	@JsonIgnore
23
	protected String lastValidationJob;
24

    
25
	public Boolean getActive() {
26
		return active;
27
	}
28

    
29
	public void setActive(final Boolean active) {
30
		this.active = active;
31
	}
32

    
33
	public String getMetadataIdentifierPath() {
34
		return metadataIdentifierPath;
35
	}
36

    
37
	public void setMetadataIdentifierPath(final String metadataIdentifierPath) {
38
		this.metadataIdentifierPath = metadataIdentifierPath;
39
	}
40

    
41
	public String getLastCollectionMdid() {
42
		return lastCollectionMdid;
43
	}
44

    
45
	public void setLastCollectionMdid(final String lastCollectionMdid) {
46
		this.lastCollectionMdid = lastCollectionMdid;
47
	}
48

    
49
	public String getLastAggregationMdid() {
50
		return lastAggregationMdid;
51
	}
52

    
53
	public void setLastAggregationMdid(final String lastAggregationMdid) {
54
		this.lastAggregationMdid = lastAggregationMdid;
55
	}
56

    
57
	public String getLastDownloadObjid() {
58
		return lastDownloadObjid;
59
	}
60

    
61
	public void setLastDownloadObjid(final String lastDownloadObjid) {
62
		this.lastDownloadObjid = lastDownloadObjid;
63
	}
64

    
65
	public String getLastValidationJob() {
66
		return lastValidationJob;
67
	}
68

    
69
	public void setLastValidationJob(final String lastValidationJob) {
70
		this.lastValidationJob = lastValidationJob;
71
	}
72
}
(2-2/17)