Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.functionality.modular.ui.repositories.objects;
2
3 50268 michele.ar
import java.util.ArrayList;
4 26600 sandro.lab
import java.util.List;
5
6 50268 michele.ar
import eu.dnetlib.enabling.datasources.common.SearchApisEntry;
7 26600 sandro.lab
8 50268 michele.ar
public class RepoInterfaceEntry extends SearchApisEntry {
9 33846 michele.ar
10 26600 sandro.lab
	private String label;
11 43828 michele.ar
	private boolean removable = false;
12 30870 michele.ar
	private String collDate = "";
13
	private int collTotal = 0;
14
	private String collMdId = "";
15
	private String aggrMdId = "";
16 33846 michele.ar
	private String downloadDate = "";
17
	private int downloadTotal = 0;
18
	private String downloadObjId = "";
19 42425 michele.ar
	private String repoType;
20
	private String email;
21 50268 michele.ar
	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 26600 sandro.lab
26 30870 michele.ar
	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 33846 michele.ar
	public void setCollDate(final String collDate) {
39 30870 michele.ar
		this.collDate = collDate;
40
	}
41
42
	public int getCollTotal() {
43
		return collTotal;
44
	}
45
46 33846 michele.ar
	public void setCollTotal(final int collTotal) {
47 30870 michele.ar
		this.collTotal = collTotal;
48
	}
49 33846 michele.ar
50 26600 sandro.lab
	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 30870 michele.ar
	public List<SimpleParamEntry> getOtherParams() {
67
		return otherParams;
68 26600 sandro.lab
	}
69
70 33846 michele.ar
	public void setOtherParams(final List<SimpleParamEntry> otherParams) {
71 30870 michele.ar
		this.otherParams = otherParams;
72 26600 sandro.lab
	}
73 33846 michele.ar
74 26600 sandro.lab
	public List<RepoMetaWfEntry> getMetaWFs() {
75
		return metaWFs;
76
	}
77
78
	public void setMetaWFs(final List<RepoMetaWfEntry> metaWFs) {
79
		this.metaWFs = metaWFs;
80
	}
81
82 30870 michele.ar
	public String getAggrMdId() {
83
		return aggrMdId;
84 26600 sandro.lab
	}
85
86 33846 michele.ar
	public void setAggrMdId(final String aggrMdId) {
87 30870 michele.ar
		this.aggrMdId = aggrMdId;
88 26600 sandro.lab
	}
89
90 30870 michele.ar
	public String getCollMdId() {
91
		return collMdId;
92
	}
93
94 33846 michele.ar
	public void setCollMdId(final String collMdId) {
95 30870 michele.ar
		this.collMdId = collMdId;
96
	}
97
98 33846 michele.ar
	public String getDownloadDate() {
99
		return downloadDate;
100
	}
101 31978 sandro.lab
102 33846 michele.ar
	public void setDownloadDate(final String downloadDate) {
103
		this.downloadDate = downloadDate;
104
	}
105 31978 sandro.lab
106 33846 michele.ar
	public int getDownloadTotal() {
107
		return downloadTotal;
108
	}
109 31978 sandro.lab
110 33846 michele.ar
	public void setDownloadTotal(final int downloadTotal) {
111
		this.downloadTotal = downloadTotal;
112
	}
113 31978 sandro.lab
114 33846 michele.ar
	public String getDownloadObjId() {
115
		return downloadObjId;
116
	}
117 31978 sandro.lab
118 33846 michele.ar
	public void setDownloadObjId(final String downloadObjId) {
119
		this.downloadObjId = downloadObjId;
120
	}
121 42425 michele.ar
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 43828 michele.ar
138
	public boolean isRemovable() {
139
		return removable;
140
	}
141
142 50268 michele.ar
	public void setRemovable(final boolean removable) {
143 43828 michele.ar
		this.removable = removable;
144
	}
145
146 26600 sandro.lab
}