Project

General

Profile

« Previous | Next » 

Revision 45361

codebase used to migrate to java8 the production system

View differences:

modules/dnet-openaireplus-datasource-manager-rmi/trunk/dnet-openaireplus-datasource-manager-rmi.iml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
3
  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false">
4
    <output url="file://$MODULE_DIR$/target/classes" />
5
    <output-test url="file://$MODULE_DIR$/target/test-classes" />
6
    <content url="file://$MODULE_DIR$">
7
      <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
8
      <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
9
      <excludeFolder url="file://$MODULE_DIR$/target" />
10
    </content>
11
    <orderEntry type="inheritedJdk" />
12
    <orderEntry type="sourceFolder" forTests="false" />
13
    <orderEntry type="library" name="Maven: eu.dnetlib:cnr-rmi-api:2.0.0-SNAPSHOT" level="project" />
14
    <orderEntry type="library" name="Maven: org.apache.cxf:cxf-api:2.7.8" level="project" />
15
    <orderEntry type="library" name="Maven: org.codehaus.woodstox:woodstox-core-asl:4.2.0" level="project" />
16
    <orderEntry type="library" name="Maven: org.codehaus.woodstox:stax2-api:3.1.1" level="project" />
17
    <orderEntry type="library" name="Maven: org.apache.ws.xmlschema:xmlschema-core:2.0.3" level="project" />
18
    <orderEntry type="library" name="Maven: org.apache.geronimo.specs:geronimo-javamail_1.4_spec:1.7.1" level="project" />
19
    <orderEntry type="library" name="Maven: wsdl4j:wsdl4j:1.6.3" level="project" />
20
    <orderEntry type="library" name="Maven: log4j:log4j:1.2.17" level="project" />
21
  </component>
22
</module>
modules/dnet-openaireplus-datasource-manager-rmi/trunk/deploy.info
1
{"type_source": "SVN", "goal": "package -U -T 4C source:jar", "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-openaireplus-datasource-manager-rmi/trunk/", "deploy_repository": "dnet4-snapshots", "version": "4", "mail": "sandro.labruzzo@isti.cnr.it,michele.artini@isti.cnr.it, claudio.atzori@isti.cnr.it, alessia.bardi@isti.cnr.it", "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots", "name": "dnet-openaireplus-datasource-manager-rmi"}
modules/dnet-openaireplus-datasource-manager-rmi/trunk/src/main/java/eu/dnetlib/enabling/datasources/rmi/DatasourceManagerServiceException.java
1
package eu.dnetlib.enabling.datasources.rmi;
2

  
3
import eu.dnetlib.common.rmi.RMIException;
4

  
5
public class DatasourceManagerServiceException extends RMIException {
6

  
7
	/**
8
	 * 
9
	 */
10
	private static final long serialVersionUID = -5987839351772223236L;
11

  
12
	public DatasourceManagerServiceException(final String string) {
13
		super(string);
14
	}
15

  
16
	public DatasourceManagerServiceException(final String string, final Throwable exception) {
17
		super(string, exception);
18
	}
19

  
20
	public DatasourceManagerServiceException(final Throwable exception) {
21
		super(exception);
22
	}
23

  
24
}
modules/dnet-openaireplus-datasource-manager-rmi/trunk/src/main/java/eu/dnetlib/enabling/datasources/rmi/DatasourceManagerService.java
1
package eu.dnetlib.enabling.datasources.rmi;
2

  
3
import java.util.List;
4

  
5
import javax.jws.WebParam;
6
import javax.jws.WebService;
7

  
8
import eu.dnetlib.common.rmi.BaseService;
9

  
10
@Deprecated
11
@WebService
12
public interface DatasourceManagerService extends BaseService {
13

  
14
	/**
15
	 * Register a datasource.
16
	 * 
17
	 * @param ds
18
	 *            the new datasource
19
	 * @throws DatasourceManagerServiceException
20
	 */
21
	public boolean addDatasource(@WebParam(name = "ds") DatasourceDesc ds) throws DatasourceManagerServiceException;
22

  
23
	/**
24
	 * Delete a datasource.
25
	 * 
26
	 * @param dsId
27
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
28
	 * @throws DatasourceManagerServiceException
29
	 */
30
	public boolean deleteDatasource(@WebParam(name = "dsId") String dsId) throws DatasourceManagerServiceException;
31

  
32
	/**
33
	 * Returns a datasource.
34
	 * 
35
	 * @param dsId
36
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
37
	 * @throws DatasourceManagerServiceException
38
	 */
39
	public DatasourceDesc getDatasource(@WebParam(name = "dsId") String dsId) throws DatasourceManagerServiceException;
40

  
41
	/**
42
	 * Returns all the datasources.
43
	 * 
44
	 * @return a list of XML profiles
45
	 * @throws DatasourceManagerServiceException
46
	 */
47
	public List<DatasourceDesc> listAllDatasources() throws DatasourceManagerServiceException;
48

  
49
	/**
50
	 * Returns the datasources with some properties.
51
	 * 
52
	 * @param compliance
53
	 *            the level of compliance (or NULL to skip the test)
54
	 * @param fileManagementMode
55
	 *            the fileManagementMode property (or NULL to skip the test)
56
	 * @param contentDescription
57
	 *            the contentDescription property (or NULL to skip the test)
58
	 * @param iisProcessingWorkflow
59
	 *            the iisProcessingWorkflow property (or NULL to skip the test)
60
	 * @param collectedFrom
61
	 *            the collectedFrom property (or NULL to skip the test)
62
	 * @return a list of XML profiles
63
	 * @throws DatasourceManagerServiceException
64
	 */
65
	public List<DatasourceDesc> listDatasourcesUsingFilter(@WebParam(name = "compliance") String compliance,
66
			@WebParam(name = "contentDescription") String contentDescription,
67
			@WebParam(name = "iisProcessingWorkflow") String iisProcessingWorkflow,
68
			@WebParam(name = "collectedFrom") String collectedFrom) throws DatasourceManagerServiceException;
69

  
70
	/**
71
	 * updates the level of compliance of a datasource.
72
	 * 
73
	 * @param dsId
74
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
75
	 * @param ifaceId
76
	 *            the interface id
77
	 * @param level
78
	 *            the new level of compliance
79
	 * @return true if the operation ends successfully
80
	 * @throws DatasourceManagerServiceException
81
	 */
82
	public boolean updateLevelOfCompliance(@WebParam(name = "dsId") String dsId,
83
			@WebParam(name = "ifaceId") String ifaceId,
84
			@WebParam(name = "level") String level) throws DatasourceManagerServiceException;
85

  
86
	/**
87
	 * update the baseUrl of an interface.
88
	 * 
89
	 * @param dsId
90
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
91
	 * @param ifaceId
92
	 *            the interface id
93
	 * @param baseUrl
94
	 *            the new value
95
	 * @return true if the operation ends successfully
96
	 * @throws DatasourceManagerServiceException
97
	 */
98
	public boolean updateBaseUrl(@WebParam(name = "dsId") String dsId, @WebParam(name = "ifaceId") String ifaceId, @WebParam(name = "baseUrl") String baseUrl)
99
			throws DatasourceManagerServiceException;
100

  
101
	/**
102
	 * update the activation status of an interface (true = there is a related wf).
103
	 * 
104
	 * @param dsId
105
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
106
	 * @param ifaceId
107
	 *            the interface id
108
	 * @param active
109
	 *            true if there is a related wf
110
	 * @return true if the operation ends successfully
111
	 * @throws DatasourceManagerServiceException
112
	 */
113
	public boolean updateActivationStatus(@WebParam(name = "dsId") String dsId,
114
			@WebParam(name = "ifaceId") String ifaceId,
115
			@WebParam(name = "active") boolean active) throws DatasourceManagerServiceException;
116

  
117
	/**
118
	 * update the "contentDescription" property of an interface.
119
	 * 
120
	 * @param dsId
121
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
122
	 * @param ifaceId
123
	 *            the interface id
124
	 * @param desc
125
	 *            the new value
126
	 * @return true if the operation ends successfully
127
	 * @throws DatasourceManagerServiceException
128
	 */
129
	public boolean updateContentDescription(@WebParam(name = "dsId") String dsId,
130
			@WebParam(name = "ifaceId") String ifaceId,
131
			@WebParam(name = "desc") String desc) throws DatasourceManagerServiceException;
132

  
133
	/**
134
	 * update the "iis_processing_workflow" property of an interface.
135
	 * 
136
	 * @param dsId
137
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
138
	 * @param ifaceId
139
	 *            the interface id
140
	 * @param wf
141
	 *            the new value
142
	 * @return true if the operation ends successfully
143
	 * @throws DatasourceManagerServiceException
144
	 */
145
	public boolean setIisProcessingWorkflow(@WebParam(name = "dsId") String dsId, @WebParam(name = "ifaceId") String ifaceId, @WebParam(name = "wf") String wf)
146
			throws DatasourceManagerServiceException;
147

  
148
	/**
149
	 * Set a generic extra field of an interface.
150
	 * 
151
	 * @param dsId
152
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
153
	 * @param ifaceId
154
	 *            the interface id
155
	 * @param field
156
	 *            the field name
157
	 * @param value
158
	 *            the new value (or null for removing it)
159
	 * @param preserveOriginal
160
	 *            preserve the original value in the DB (the value is stored in the "edited" column)
161
	 * @return true if the operation ends successfully
162
	 * @throws DatasourceManagerServiceException
163
	 */
164
	public boolean updateExtraField(@WebParam(name = "dsId") String dsId,
165
			@WebParam(name = "ifaceId") String ifaceId,
166
			@WebParam(name = "field") String field,
167
			@WebParam(name = "value") String value,
168
			@WebParam(name = "preserveOriginal") boolean preserveOriginal) throws DatasourceManagerServiceException;
169

  
170
	/**
171
	 * Update an access param of an interface.
172
	 * 
173
	 * @param dsId
174
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
175
	 * @param ifaceId
176
	 *            the interface id
177
	 * @param field
178
	 *            the field name
179
	 * @param value
180
	 *            the new value (or null for removing it)
181
	 * @param preserveOriginal
182
	 *            preserve the original value in the DB (the value is stored in the "edited" column)
183
	 * @return true if the operation ends successfully
184
	 * @throws DatasourceManagerServiceException
185
	 */
186
	public boolean updateAccessParam(@WebParam(name = "dsId") String dsId,
187
			@WebParam(name = "ifaceId") String ifaceId,
188
			@WebParam(name = "field") String field,
189
			@WebParam(name = "value") String value,
190
			@WebParam(name = "preserveOriginal") boolean preserveOriginal) throws DatasourceManagerServiceException;
191

  
192
	/**
193
	 * delete a generic extra field or an access param of an interface.
194
	 * 
195
	 * @param dsId
196
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
197
	 * @param ifaceId
198
	 *            the interface id
199
	 * @param field
200
	 *            the field name
201
	 * @return true if the operation ends successfully
202
	 * @throws DatasourceManagerServiceException
203
	 */
204
	public boolean deleteAccessParamOrExtraField(@WebParam(name = "dsId") String dsId,
205
			@WebParam(name = "ifaceId") String ifaceId,
206
			@WebParam(name = "field") String field) throws DatasourceManagerServiceException;
207

  
208
	/**
209
	 * Add an interface to a datasource.
210
	 * 
211
	 * @param dsId
212
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
213
	 * @param iface
214
	 *            the interface description
215
	 * @return true if the operation ends successfully
216
	 * @throws DatasourceManagerServiceException
217
	 */
218
	public boolean addInterface(@WebParam(name = "dsId") String dsId, @WebParam(name = "interface") IfaceDesc iface) throws DatasourceManagerServiceException;
219

  
220
	/**
221
	 * Delete the interface of a datasource.
222
	 * 
223
	 * @param dsId
224
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
225
	 * @param ifcId
226
	 *            the id of the interface
227
	 * @return true if the operation ends successfully
228
	 * @throws DatasourceManagerServiceException
229
	 */
230
	public boolean deleteInterface(@WebParam(name = "dsId") String dsId, @WebParam(name = "ifaceId") String ifaceId) throws DatasourceManagerServiceException;
231

  
232
	/**
233
	 * Perform a generic SQL update on a datasource.
234
	 * 
235
	 * @param dsId
236
	 *            the OpenAireDataSourceId (example: opendoar____::2101)
237
	 * @param sql
238
	 *            the sql query to insert/update/delete the datasource
239
	 * @param delete
240
	 *            true if the profile must be deleted
241
	 * @return true if the operation ends successfully
242
	 * @throws DatasourceManagerServiceException
243
	 */
244
	public boolean updateSQL(@WebParam(name = "dsId") String dsId, @WebParam(name = "sql") String sql, @WebParam(name = "delete") boolean delete)
245
			throws DatasourceManagerServiceException;
246

  
247
}
modules/dnet-openaireplus-datasource-manager-rmi/trunk/src/main/java/eu/dnetlib/enabling/datasources/rmi/IfaceDesc.java
1
package eu.dnetlib.enabling.datasources.rmi;
2

  
3
import java.util.HashMap;
4
import java.util.Map;
5

  
6
import javax.xml.bind.annotation.XmlRootElement;
7

  
8
@XmlRootElement
9
public class IfaceDesc {
10

  
11
	private String id;
12
	private String typology;
13
	private String compliance;
14
	private String contentDescription;
15
	private String accessProtocol;
16
	private String baseUrl;
17
	private boolean active = false;
18
	private boolean removable = false;
19
	private Map<String, String> accessParams = new HashMap<String, String>();
20
	private Map<String, String> extraFields = new HashMap<String, String>();
21

  
22
	public IfaceDesc() {}
23

  
24
	public String getId() {
25
		return id;
26
	}
27

  
28
	public void setId(final String id) {
29
		this.id = id;
30
	}
31

  
32
	public String getTypology() {
33
		return typology;
34
	}
35

  
36
	public void setTypology(final String typology) {
37
		this.typology = typology;
38
	}
39

  
40
	public String getCompliance() {
41
		return compliance;
42
	}
43

  
44
	public void setCompliance(final String compliance) {
45
		this.compliance = compliance;
46
	}
47

  
48
	public String getContentDescription() {
49
		return contentDescription;
50
	}
51

  
52
	public void setContentDescription(final String contentDescription) {
53
		this.contentDescription = contentDescription;
54
	}
55

  
56
	public String getAccessProtocol() {
57
		return accessProtocol;
58
	}
59

  
60
	public void setAccessProtocol(final String accessProtocol) {
61
		this.accessProtocol = accessProtocol;
62
	}
63

  
64
	public String getBaseUrl() {
65
		return baseUrl;
66
	}
67

  
68
	public void setBaseUrl(final String baseUrl) {
69
		this.baseUrl = baseUrl;
70
	}
71

  
72
	public Map<String, String> getAccessParams() {
73
		return accessParams;
74
	}
75

  
76
	public void setAccessParams(final Map<String, String> accessParams) {
77
		this.accessParams = accessParams;
78
	}
79

  
80
	public Map<String, String> getExtraFields() {
81
		return extraFields;
82
	}
83

  
84
	public void setExtraFields(final Map<String, String> extraFields) {
85
		this.extraFields = extraFields;
86
	}
87

  
88
	public boolean getActive() {
89
		return active;
90
	}
91

  
92
	public void setActive(final boolean active) {
93
		this.active = active;
94
	}
95

  
96
	public boolean getRemovable() {
97
		return removable;
98
	}
99

  
100
	public void setRemovable(final boolean removable) {
101
		this.removable = removable;
102
	}
103

  
104
}
modules/dnet-openaireplus-datasource-manager-rmi/trunk/src/main/java/eu/dnetlib/enabling/datasources/rmi/DatasourceDesc.java
1
package eu.dnetlib.enabling.datasources.rmi;
2

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

  
7
import javax.xml.bind.annotation.XmlRootElement;
8

  
9
@XmlRootElement
10
public class DatasourceDesc {
11

  
12
	private String id;
13
	private String officialName;
14
	private String englishName;
15
	private String websiteUrl;
16
	private String logoUrl;
17
	private String contactEmail;
18
	private String countryCode;
19
	private String countryName;
20
	private String organization;
21
	private Double latitude = 0.0;
22
	private Double longitude = 0.0;
23
	private Double timezone = 0.0;
24
	private String namespacePrefix;
25
	private String odNumberOfItems;
26
	private String odNumberOfItemsDate;
27
	private String odPolicies;
28
	private String odLanguages;
29
	private String odContentTypes;
30
	private String collectedFrom;
31
	private Boolean inferred = false;
32
	private Boolean deletedByInference = false;
33
	private Double trust = 0.9;
34
	private String inferenceProvenance;
35
	private Date dateOfValidation;
36
	private String registeredBy;
37
	private String datasourceClass;
38
	private String provenanceActionClass;
39
	private Date dateOfCollection;
40
	private String typology;
41
	private String activationId;
42
	private Boolean mergehomonyms = true;
43
	private String description;
44
	private Date releaseStartDate;
45
	private Date releaseEndDate;
46
	private String missionStatementUrl;
47
	private Boolean dataProvider = false;
48
	private Boolean serviceProvider = false;
49
	private String databaseAccessType;
50
	private String dataUploadType;
51
	private String databaseAccessRestriction;
52
	private String dataUploadRestriction;
53
	private Boolean versioning = false;
54
	private String citationGuidelineUrl;
55
	private String qualityManagementKind;
56
	private String pidSystems;
57
	private String certificates;
58
	private String aggregator;
59
	private String issn;
60
	private String eissn;
61
	private String lissn;
62
	private List<IfaceDesc> interfaces = new ArrayList<IfaceDesc>();
63

  
64
	public String getId() {
65
		return id;
66
	}
67

  
68
	public void setId(final String id) {
69
		this.id = id;
70
	}
71

  
72
	public String getOfficialName() {
73
		return officialName;
74
	}
75

  
76
	public void setOfficialName(final String officialName) {
77
		this.officialName = officialName;
78
	}
79

  
80
	public String getEnglishName() {
81
		return englishName;
82
	}
83

  
84
	public void setEnglishName(final String englishName) {
85
		this.englishName = englishName;
86
	}
87

  
88
	public String getWebsiteUrl() {
89
		return websiteUrl;
90
	}
91

  
92
	public void setWebsiteUrl(final String websiteUrl) {
93
		this.websiteUrl = websiteUrl;
94
	}
95

  
96
	public String getLogoUrl() {
97
		return logoUrl;
98
	}
99

  
100
	public void setLogoUrl(final String logoUrl) {
101
		this.logoUrl = logoUrl;
102
	}
103

  
104
	public String getContactEmail() {
105
		return contactEmail;
106
	}
107

  
108
	public void setContactEmail(final String contactEmail) {
109
		this.contactEmail = contactEmail;
110
	}
111

  
112
	public String getCountryCode() {
113
		return countryCode;
114
	}
115

  
116
	public void setCountryCode(final String countryCode) {
117
		this.countryCode = countryCode;
118
	}
119

  
120
	public String getCountryName() {
121
		return countryName;
122
	}
123

  
124
	public void setCountryName(final String countryName) {
125
		this.countryName = countryName;
126
	}
127

  
128
	public String getOrganization() {
129
		return organization;
130
	}
131

  
132
	public void setOrganization(final String organization) {
133
		this.organization = organization;
134
	}
135

  
136
	public Double getLatitude() {
137
		return latitude;
138
	}
139

  
140
	public void setLatitude(final Double latitude) {
141
		this.latitude = latitude;
142
	}
143

  
144
	public Double getLongitude() {
145
		return longitude;
146
	}
147

  
148
	public void setLongitude(final Double longitude) {
149
		this.longitude = longitude;
150
	}
151

  
152
	public Double getTimezone() {
153
		return timezone;
154
	}
155

  
156
	public void setTimezone(final Double timezone) {
157
		this.timezone = timezone;
158
	}
159

  
160
	public String getNamespacePrefix() {
161
		return namespacePrefix;
162
	}
163

  
164
	public void setNamespacePrefix(final String namespacePrefix) {
165
		this.namespacePrefix = namespacePrefix;
166
	}
167

  
168
	public String getOdNumberOfItems() {
169
		return odNumberOfItems;
170
	}
171

  
172
	public void setOdNumberOfItems(final String odNumberOfItems) {
173
		this.odNumberOfItems = odNumberOfItems;
174
	}
175

  
176
	public String getOdNumberOfItemsDate() {
177
		return odNumberOfItemsDate;
178
	}
179

  
180
	public void setOdNumberOfItemsDate(final String odNumberOfItemsDate) {
181
		this.odNumberOfItemsDate = odNumberOfItemsDate;
182
	}
183

  
184
	public String getOdPolicies() {
185
		return odPolicies;
186
	}
187

  
188
	public void setOdPolicies(final String odPolicies) {
189
		this.odPolicies = odPolicies;
190
	}
191

  
192
	public String getOdLanguages() {
193
		return odLanguages;
194
	}
195

  
196
	public void setOdLanguages(final String odLanguages) {
197
		this.odLanguages = odLanguages;
198
	}
199

  
200
	public String getOdContentTypes() {
201
		return odContentTypes;
202
	}
203

  
204
	public void setOdContentTypes(final String odContentTypes) {
205
		this.odContentTypes = odContentTypes;
206
	}
207

  
208
	public String getCollectedFrom() {
209
		return collectedFrom;
210
	}
211

  
212
	public void setCollectedFrom(final String collectedFrom) {
213
		this.collectedFrom = collectedFrom;
214
	}
215

  
216
	public Boolean isInferred() {
217
		return inferred;
218
	}
219

  
220
	public void setInferred(final Boolean inferred) {
221
		this.inferred = inferred;
222
	}
223

  
224
	public Boolean isDeletedByInference() {
225
		return deletedByInference;
226
	}
227

  
228
	public void setDeletedByInference(final Boolean deletedByInference) {
229
		this.deletedByInference = deletedByInference;
230
	}
231

  
232
	public Double getTrust() {
233
		return trust;
234
	}
235

  
236
	public void setTrust(final Double trust) {
237
		this.trust = trust;
238
	}
239

  
240
	public String getInferenceProvenance() {
241
		return inferenceProvenance;
242
	}
243

  
244
	public void setInferenceProvenance(final String inferenceProvenance) {
245
		this.inferenceProvenance = inferenceProvenance;
246
	}
247

  
248
	public Date getDateOfValidation() {
249
		return dateOfValidation;
250
	}
251

  
252
	public void setDateOfValidation(final Date dateOfValidation) {
253
		this.dateOfValidation = dateOfValidation;
254
	}
255

  
256
	public String getDatasourceClass() {
257
		return datasourceClass;
258
	}
259

  
260
	public void setDatasourceClass(final String datasourceClass) {
261
		this.datasourceClass = datasourceClass;
262
	}
263

  
264
	public String getProvenanceActionClass() {
265
		return provenanceActionClass;
266
	}
267

  
268
	public void setProvenanceActionClass(final String provenanceActionClass) {
269
		this.provenanceActionClass = provenanceActionClass;
270
	}
271

  
272
	public Date getDateOfCollection() {
273
		return dateOfCollection;
274
	}
275

  
276
	public void setDateOfCollection(final Date dateOfCollection) {
277
		this.dateOfCollection = dateOfCollection;
278
	}
279

  
280
	public String getTypology() {
281
		return typology;
282
	}
283

  
284
	public void setTypology(final String typology) {
285
		this.typology = typology;
286
	}
287

  
288
	public String getActivationId() {
289
		return activationId;
290
	}
291

  
292
	public void setActivationId(final String activationId) {
293
		this.activationId = activationId;
294
	}
295

  
296
	public Boolean isMergehomonyms() {
297
		return mergehomonyms;
298
	}
299

  
300
	public void setMergehomonyms(final Boolean mergehomonyms) {
301
		this.mergehomonyms = mergehomonyms;
302
	}
303

  
304
	public String getDescription() {
305
		return description;
306
	}
307

  
308
	public void setDescription(final String description) {
309
		this.description = description;
310
	}
311

  
312
	public Date getReleaseStartDate() {
313
		return releaseStartDate;
314
	}
315

  
316
	public void setReleaseStartDate(final Date releaseStartDate) {
317
		this.releaseStartDate = releaseStartDate;
318
	}
319

  
320
	public Date getReleaseEndDate() {
321
		return releaseEndDate;
322
	}
323

  
324
	public void setReleaseEndDate(final Date releaseEndDate) {
325
		this.releaseEndDate = releaseEndDate;
326
	}
327

  
328
	public String getMissionStatementUrl() {
329
		return missionStatementUrl;
330
	}
331

  
332
	public void setMissionStatementUrl(final String missionStatementUrl) {
333
		this.missionStatementUrl = missionStatementUrl;
334
	}
335

  
336
	public Boolean isDataProvider() {
337
		return dataProvider;
338
	}
339

  
340
	public void setDataProvider(final Boolean dataProvider) {
341
		this.dataProvider = dataProvider;
342
	}
343

  
344
	public Boolean isServiceProvider() {
345
		return serviceProvider;
346
	}
347

  
348
	public void setServiceProvider(final Boolean serviceProvider) {
349
		this.serviceProvider = serviceProvider;
350
	}
351

  
352
	public String getDatabaseAccessType() {
353
		return databaseAccessType;
354
	}
355

  
356
	public void setDatabaseAccessType(final String databaseAccessType) {
357
		this.databaseAccessType = databaseAccessType;
358
	}
359

  
360
	public String getDataUploadType() {
361
		return dataUploadType;
362
	}
363

  
364
	public void setDataUploadType(final String dataUploadType) {
365
		this.dataUploadType = dataUploadType;
366
	}
367

  
368
	public String getDatabaseAccessRestriction() {
369
		return databaseAccessRestriction;
370
	}
371

  
372
	public void setDatabaseAccessRestriction(final String databaseAccessRestriction) {
373
		this.databaseAccessRestriction = databaseAccessRestriction;
374
	}
375

  
376
	public String getDataUploadRestriction() {
377
		return dataUploadRestriction;
378
	}
379

  
380
	public void setDataUploadRestriction(final String dataUploadRestriction) {
381
		this.dataUploadRestriction = dataUploadRestriction;
382
	}
383

  
384
	public Boolean isVersioning() {
385
		return versioning;
386
	}
387

  
388
	public void setVersioning(final Boolean versioning) {
389
		this.versioning = versioning;
390
	}
391

  
392
	public String getCitationGuidelineUrl() {
393
		return citationGuidelineUrl;
394
	}
395

  
396
	public void setCitationGuidelineUrl(final String citationGuidelineUrl) {
397
		this.citationGuidelineUrl = citationGuidelineUrl;
398
	}
399

  
400
	public String getQualityManagementKind() {
401
		return qualityManagementKind;
402
	}
403

  
404
	public void setQualityManagementKind(final String qualityManagementKind) {
405
		this.qualityManagementKind = qualityManagementKind;
406
	}
407

  
408
	public String getPidSystems() {
409
		return pidSystems;
410
	}
411

  
412
	public void setPidSystems(final String pidSystems) {
413
		this.pidSystems = pidSystems;
414
	}
415

  
416
	public String getCertificates() {
417
		return certificates;
418
	}
419

  
420
	public void setCertificates(final String certificates) {
421
		this.certificates = certificates;
422
	}
423

  
424
	public String getAggregator() {
425
		return aggregator;
426
	}
427

  
428
	public void setAggregator(final String aggregator) {
429
		this.aggregator = aggregator;
430
	}
431

  
432
	public String getIssn() {
433
		return issn;
434
	}
435

  
436
	public void setIssn(final String issn) {
437
		this.issn = issn;
438
	}
439

  
440
	public String getEissn() {
441
		return eissn;
442
	}
443

  
444
	public void setEissn(final String eissn) {
445
		this.eissn = eissn;
446
	}
447

  
448
	public String getLissn() {
449
		return lissn;
450
	}
451

  
452
	public void setLissn(final String lissn) {
453
		this.lissn = lissn;
454
	}
455

  
456
	public List<IfaceDesc> getInterfaces() {
457
		return interfaces;
458
	}
459

  
460
	public void setInterfaces(final List<IfaceDesc> interfaces) {
461
		this.interfaces = interfaces;
462
	}
463

  
464
	public String getRegisteredBy() {
465
		return registeredBy;
466
	}
467

  
468
	public void setRegisteredBy(String registeredBy) {
469
		this.registeredBy = registeredBy;
470
	}
471

  
472
}
modules/dnet-openaireplus-datasource-manager-rmi/trunk/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-parent</artifactId>
7
		<version>1.0.0-SNAPSHOT</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-openaireplus-datasource-manager-rmi</artifactId>
12
	<packaging>jar</packaging>
13
	<version>2.0.0-SNAPSHOT</version>
14
	<dependencies>
15
		<dependency>
16
			<groupId>eu.dnetlib</groupId>
17
			<artifactId>cnr-rmi-api</artifactId>
18
			<version>[2.0.0-SNAPSHOT]</version>
19
		</dependency>
20
	</dependencies>
21
</project>

Also available in: Unified diff