Project

General

Profile

Download (603 Bytes) Statistics
| Branch: | Tag: | Revision:
1 98754a9b Cherian Mathew
package eu.etaxonomy.cdm.remote;
2
3
import eu.etaxonomy.cdm.model.name.NomenclaturalCode;
4
5
public class CdmPersistentRemoteSource extends CdmRemoteSourceBase {
6
	
7
	public CdmPersistentRemoteSource NewInstance(String name, String server, int port, String contextPath, NomenclaturalCode nomenclaturalCode) {
8
		return new CdmPersistentRemoteSource(name, server, port, contextPath, nomenclaturalCode);
9
	}
10
	
11
	private CdmPersistentRemoteSource(String name, String server, int port, String contextPath, NomenclaturalCode nomenclaturalCode) { 
12
		super(name, server, port, contextPath, nomenclaturalCode);
13
		
14
	}
15
16
}