Project

General

Profile

« Previous | Next » 

Revision 62129

merge from eosc_services

View differences:

RepoInterfaceEntry.java
18 18
	private String downloadObjId = "";
19 19
	private String repoType;
20 20
	private String email;
21
	private List<SimpleParamEntry> commonParams = new ArrayList<>();
21
	private boolean active = false;
22
	private String metadataIdentifierPath = "";
23
	private boolean complianceOverrided = false;
24
	private String consentTermsOfUseLabel;
25
	private String fullTextDownloadLabel;
26

  
22 27
	private List<SimpleParamEntry> accessParams = new ArrayList<>();
23
	private List<SimpleParamEntry> otherParams = new ArrayList<>();
28

  
24 29
	private List<RepoMetaWfEntry> metaWFs = new ArrayList<>();
25 30

  
26 31
	public String getLabel() {
......
47 52
		this.collTotal = collTotal;
48 53
	}
49 54

  
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 55
	public List<SimpleParamEntry> getAccessParams() {
59 56
		return accessParams;
60 57
	}
......
63 60
		this.accessParams = accessParams;
64 61
	}
65 62

  
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 63
	public List<RepoMetaWfEntry> getMetaWFs() {
75 64
		return metaWFs;
76 65
	}
......
143 132
		this.removable = removable;
144 133
	}
145 134

  
135
	@Override
136
	public boolean isActive() {
137
		return active;
138
	}
139

  
140
	@Override
141
	public void setActive(final boolean active) {
142
		this.active = active;
143
	}
144

  
145
	public String getMetadataIdentifierPath() {
146
		return metadataIdentifierPath;
147
	}
148

  
149
	public void setMetadataIdentifierPath(final String metadataIdentifierPath) {
150
		this.metadataIdentifierPath = metadataIdentifierPath;
151
	}
152

  
153
	public boolean isComplianceOverrided() {
154
		return complianceOverrided;
155
	}
156

  
157
	public void setComplianceOverrided(final boolean complianceOverrided) {
158
		this.complianceOverrided = complianceOverrided;
159
	}
160

  
161
	public String getConsentTermsOfUseLabel() {
162
		return consentTermsOfUseLabel;
163
	}
164

  
165
	public void setConsentTermsOfUseLabel(final String consentTermsOfUseLabel) {
166
		this.consentTermsOfUseLabel = consentTermsOfUseLabel;
167
	}
168

  
169
	public String getFullTextDownloadLabel() {
170
		return fullTextDownloadLabel;
171
	}
172

  
173
	public void setFullTextDownloadLabel(final String fullTextDownloadLabel) {
174
		this.fullTextDownloadLabel = fullTextDownloadLabel;
175
	}
176

  
146 177
}

Also available in: Unified diff