Project

General

Profile

1
package eu.dnetlib.functionality.modular.ui.repositories.objects;
2

    
3
import java.util.ArrayList;
4
import java.util.List;
5

    
6
import eu.dnetlib.enabling.datasources.common.SearchApisEntry;
7

    
8
public class RepoInterfaceEntry extends SearchApisEntry {
9

    
10
	private String label;
11
	private boolean removable = false;
12
	private String collDate = "";
13
	private int collTotal = 0;
14
	private String collMdId = "";
15
	private String aggrMdId = "";
16
	private String downloadDate = "";
17
	private int downloadTotal = 0;
18
	private String downloadObjId = "";
19
	private String repoType;
20
	private String email;
21
	private List<SimpleParamEntry> commonParams = new ArrayList<>();
22
	private List<SimpleParamEntry> accessParams = new ArrayList<>();
23
	private List<SimpleParamEntry> otherParams = new ArrayList<>();
24
	private List<RepoMetaWfEntry> metaWFs = new ArrayList<>();
25

    
26
	public String getLabel() {
27
		return label;
28
	}
29

    
30
	public void setLabel(final String label) {
31
		this.label = label;
32
	}
33

    
34
	public String getCollDate() {
35
		return collDate;
36
	}
37

    
38
	public void setCollDate(final String collDate) {
39
		this.collDate = collDate;
40
	}
41

    
42
	public int getCollTotal() {
43
		return collTotal;
44
	}
45

    
46
	public void setCollTotal(final int collTotal) {
47
		this.collTotal = collTotal;
48
	}
49

    
50
	public List<SimpleParamEntry> getCommonParams() {
51
		return commonParams;
52
	}
53

    
54
	public void setCommonParams(final List<SimpleParamEntry> commonParams) {
55
		this.commonParams = commonParams;
56
	}
57

    
58
	public List<SimpleParamEntry> getAccessParams() {
59
		return accessParams;
60
	}
61

    
62
	public void setAccessParams(final List<SimpleParamEntry> accessParams) {
63
		this.accessParams = accessParams;
64
	}
65

    
66
	public List<SimpleParamEntry> getOtherParams() {
67
		return otherParams;
68
	}
69

    
70
	public void setOtherParams(final List<SimpleParamEntry> otherParams) {
71
		this.otherParams = otherParams;
72
	}
73

    
74
	public List<RepoMetaWfEntry> getMetaWFs() {
75
		return metaWFs;
76
	}
77

    
78
	public void setMetaWFs(final List<RepoMetaWfEntry> metaWFs) {
79
		this.metaWFs = metaWFs;
80
	}
81

    
82
	public String getAggrMdId() {
83
		return aggrMdId;
84
	}
85

    
86
	public void setAggrMdId(final String aggrMdId) {
87
		this.aggrMdId = aggrMdId;
88
	}
89

    
90
	public String getCollMdId() {
91
		return collMdId;
92
	}
93

    
94
	public void setCollMdId(final String collMdId) {
95
		this.collMdId = collMdId;
96
	}
97

    
98
	public String getDownloadDate() {
99
		return downloadDate;
100
	}
101

    
102
	public void setDownloadDate(final String downloadDate) {
103
		this.downloadDate = downloadDate;
104
	}
105

    
106
	public int getDownloadTotal() {
107
		return downloadTotal;
108
	}
109

    
110
	public void setDownloadTotal(final int downloadTotal) {
111
		this.downloadTotal = downloadTotal;
112
	}
113

    
114
	public String getDownloadObjId() {
115
		return downloadObjId;
116
	}
117

    
118
	public void setDownloadObjId(final String downloadObjId) {
119
		this.downloadObjId = downloadObjId;
120
	}
121

    
122
	public String getRepoType() {
123
		return repoType;
124
	}
125

    
126
	public void setRepoType(final String repoType) {
127
		this.repoType = repoType;
128
	}
129

    
130
	public String getEmail() {
131
		return email;
132
	}
133

    
134
	public void setEmail(final String email) {
135
		this.email = email;
136
	}
137

    
138
	public boolean isRemovable() {
139
		return removable;
140
	}
141

    
142
	public void setRemovable(final boolean removable) {
143
		this.removable = removable;
144
	}
145

    
146
}
(1-1/4)