Project

General

Profile

Download (901 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2014 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.remoting.source;
10

    
11
import eu.etaxonomy.cdm.config.ICdmSource;
12

    
13
/**
14
 * Interface representing a CDM remote source
15
 */
16
public interface ICdmRemoteSource extends ICdmSource {
17

    
18
	/**
19
	 * Gets the context path.
20
	 * e.g. for 'http://127.0.0.1:8080/col/remoting/common.service', the
21
	 * context path would be 'col'
22
	 */
23
	public String getContextPath();
24

    
25
	/**
26
	 * Gets the base url for the http-invoker services as listed in
27
	 * httpInvokerServicesClients.xml.
28
	 * e.g. for 'http://127.0.0.1:8080/col/remoting/common.service', the
29
	 * base url would be 'http://127.0.0.1:8080/col'
30
	 */
31
	public String getBaseUrl();
32

    
33
}
(7-7/7)