Project

General

Profile

Download (2.87 KB) Statistics
| Branch: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2009 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10
package eu.etaxonomy.cdm.app.common;
11

    
12
import java.net.URI;
13
import java.net.URL;
14

    
15
import org.apache.log4j.Logger;
16

    
17
import eu.etaxonomy.cdm.app.tcs.TcsSources;
18
import eu.etaxonomy.cdm.common.AccountStore;
19
import eu.etaxonomy.cdm.io.common.Source;
20

    
21
/**
22
 * @author a.mueller
23
 * @date 21.04.2010
24
 *
25
 */
26
public class CdmImportSources {
27
	@SuppressWarnings("unused")
28
	private static final Logger logger = Logger.getLogger(CdmImportSources.class);
29
	
30
	public static Source ROTE_LISTE_DB(){
31
		String dbms = Source.ORACLE;
32
		String strServer = "xxx";
33
		String strDB = "dbName";
34
		int port = 1433;
35
		String userName = "adam";
36
		return  makeSource(dbms, strServer, strDB, port, userName, null);
37
	}
38

    
39
	
40
	public static Source GLOBIS(){
41
		String dbms = Source.SQL_SERVER_2005;
42
		String strServer = "LENOVO-T61";
43
		String strDB = "globis";
44
		int port = 0001;
45
		String userName = "user";
46
		return  makeSource(dbms, strServer, strDB, port, userName, null);
47
	}
48

    
49
	public static Source GLOBIS_ODBC(){
50
		String dbms = Source.ODDBC;
51
		String strServer = "LENOVO-T61";
52
		String strDB = "globis";
53
		int port = 1433;
54
		String userName = "sa";
55
		return  makeSource(dbms, strServer, strDB, port, userName, null);
56
	}
57
	
58
	public static Source GLOBIS_MDB(){
59
		String dbms = Source.ACCESS;
60
		String strServer = null;
61
		String strDB = "C:\\localCopy\\Data\\globis\\globis.mdb";
62
		int port = -1;
63
		String userName = "";
64
		return  makeSource(dbms, strServer, strDB, port, userName, null);
65
	}
66

    
67
	
68
	public static Source GLOBIS_MDB_20120928(){
69
		String dbms = Source.ACCESS;
70
		String strServer = null;
71
		String strDB = "F:\\data\\globis\\globis.20120928.mdb";
72
		int port = -1;
73
		String userName = "";
74
		return  makeSource(dbms, strServer, strDB, port, userName, null);
75
	}
76
	
77
	public static URI SYNTHESYS_SPECIMEN(){
78
		//		tcsXmlTest.xml
79
		URL url = new TcsSources().getClass().getResource("/specimen/SynthesysSpecimenExample.xls");
80
		String sourceUrl = url.toString();
81
		URI uri = URI.create(sourceUrl);
82
		return uri;	
83
	}
84
	
85
	/**
86
	 * Initializes the source.
87
	 * @param dbms
88
	 * @param strServer
89
	 * @param strDB
90
	 * @param port
91
	 * @param userName
92
	 * @param pwd
93
	 * @return the source
94
	 */
95
	private static Source makeSource(String dbms, String strServer, String strDB, int port, String userName, String pwd ){
96
		//establish connection
97
		Source source = null;
98
		source = new Source(dbms, strServer, strDB);
99
		source.setPort(port);
100
			
101
		pwd = AccountStore.readOrStorePassword(dbms, strServer, userName, pwd);
102
		source.setUserAndPwd(userName, pwd);
103
		// write pwd to account store
104
		return source;
105
	}
106
}
(4-4/6)