Project

General

Profile

« Previous | Next » 

Revision 49900

work in progress, the application starts

View differences:

OpenaireExporterConfig.java
18 18
	// ISLOOKUP
19 19
	private ClassPathResource findSolrIndexUrl;
20 20
	private ClassPathResource findIndexDsInfo;
21
	private ClassPathResource findObjectStore;
22

  
21 23
	private String isLookupUrl;
24
	private String objectStoreServiceUrl;
25

  
22 26
	private int requestWorkers = 100;
23 27
	private int requestTimeout = 10;
24 28

  
......
286 290
	}
287 291

  
288 292
	public static class Vocabularies {
293

  
294
		private String baseUrl;
295

  
289 296
		private String countriesEndpoint;
290 297

  
298
		private String datasourceTypologiesEndpoint;
299

  
291 300
		public String getCountriesEndpoint() {
292 301
			return countriesEndpoint;
293 302
		}
......
295 304
		public void setCountriesEndpoint(final String countriesEndpoint) {
296 305
			this.countriesEndpoint = countriesEndpoint;
297 306
		}
307

  
308
		public String getBaseUrl() {
309
			return baseUrl;
310
		}
311

  
312
		public void setBaseUrl(final String baseUrl) {
313
			this.baseUrl = baseUrl;
314
		}
315

  
316
		public String getDatasourceTypologiesEndpoint() {
317
			return datasourceTypologiesEndpoint;
318
		}
319

  
320
		public void setDatasourceTypologiesEndpoint(final String datasourceTypologiesEndpoint) {
321
			this.datasourceTypologiesEndpoint = datasourceTypologiesEndpoint;
322
		}
298 323
	}
299 324

  
300 325
	public ClassPathResource getFindSolrIndexUrl() {
......
309 334
		return findIndexDsInfo;
310 335
	}
311 336

  
337
	public ClassPathResource getFindObjectStore() {
338
		return findObjectStore;
339
	}
340

  
341
	public void setFindObjectStore(final ClassPathResource findObjectStore) {
342
		this.findObjectStore = findObjectStore;
343
	}
344

  
312 345
	public void setFindIndexDsInfo(final ClassPathResource findIndexDsInfo) {
313 346
		this.findIndexDsInfo = findIndexDsInfo;
314 347
	}
......
321 354
		this.isLookupUrl = isLookupUrl;
322 355
	}
323 356

  
357
	public String getObjectStoreServiceUrl() {
358
		return objectStoreServiceUrl;
359
	}
360

  
361
	public void setObjectStoreServiceUrl(final String objectStoreServiceUrl) {
362
		this.objectStoreServiceUrl = objectStoreServiceUrl;
363
	}
364

  
324 365
	public int getRequestWorkers() {
325 366
		return requestWorkers;
326 367
	}
......
376 417
	public void setVocabularies(final Vocabularies vocabularies) {
377 418
		this.vocabularies = vocabularies;
378 419
	}
379

  
380 420
}

Also available in: Unified diff