Project

General

Profile

Download (2.92 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

    
10
package eu.etaxonomy.cdm.app.sdd;
11

    
12
import org.apache.log4j.Logger;
13

    
14
/**
15
 * @author h.fradin
16
 * @created 24.10.2008
17
 * @version 1.0
18
 */
19
public class SDDSources {
20
	private static final Logger logger = Logger.getLogger(SDDSources.class);
21
	
22
/*	public static String arecaceae(){
23
		//	Monocots rdf
24
		String sourceUrl = "http://dev.e-taxonomy.eu/trac/attachment/wiki/SampleDataConversion/Monocotyledonae/arecaceae.rdf?format=raw";
25
		return sourceUrl;
26
		
27
	}
28
*/
29
	
30
	public static String viola_local(){
31
		//		SDD XML example from the SDD v1.1 package
32
		String sourceUrl = "file:C:/Documents and Settings/lis/Mes documents/SDD/SDD bis/SDD1.1/SDD1.1/examples/SDD-Test-Simple.xml";
33
		return sourceUrl;
34
		
35
	}
36
	
37
	public static String LIAS_local(){
38
		//		SDD XML example from http://wiki.tdwg.org/twiki/bin/view/SDD/RealWorldExamples_SDD1dot1
39
		String sourceUrl = "file:C:/Documents and Settings/lis/Mes documents/SDD/SDD bis/SDD1.1/SDD1.1/examples/LIAS_Main.sdd11/LIAS_Main.sdd11.xml";
40
		return sourceUrl;
41
		
42
	}
43
	
44
	public static String Erythroneura_local(){
45
		//		SDD XML example from http://wiki.tdwg.org/twiki/bin/view/SDD/RealWorldExamples_SDD1dot1
46
		String sourceUrl = "file:C:/Documents and Settings/lis/Mes documents/SDD/SDD bis/SDD1.1/SDD1.1/examples/Erythroneura.sdd11/Erythroneura.sdd11.xml";
47
		return sourceUrl;
48
		
49
	}
50
	
51
	public static String Cicad_local(){
52
		//		SDD XML example from http://wiki.tdwg.org/twiki/bin/view/SDD/RealWorldExamples_SDD1dot1
53
		String sourceUrl = "file:C:/Documents and Settings/lis/Mes documents/SDD/SDD bis/SDD1.1/SDD1.1/examples/Cicad.sdd11/Cicad.sdd11.xml";
54
		return sourceUrl;
55
		
56
	}
57
	
58
	public static String ValRosandraFRIDAKey_local(){
59
		//		SDD XML example from http://wiki.tdwg.org/twiki/bin/view/SDD/RealWorldExamples_SDD1dot1
60
		String sourceUrl = "file:C:/Documents and Settings/lis/Mes documents/SDD/SDD bis/SDD1.1/SDD1.1/examples/Val-Rosandra-FRIDA-Key.sdd11/Val-Rosandra-FRIDA-Key.sdd11.xml";
61
		return sourceUrl;
62
		
63
	}
64
	
65
	public static String FreshwaterAquaticInsects_local(){
66
		//		SDD export from an Xper? application
67
		String sourceUrl = "file:C:/Documents and Settings/lis/Mes documents/SDD/SDD bis/SDD1.1/SDD1.1/examples/Freshwater aquatic insects/test v2.sdd.xml";
68
		return sourceUrl;
69
	}
70
	
71
	public static String viola_local_andreas(){
72
		//		SDD xml examples from the SDD v1.1 package
73
		String sourceUrl = "file:C:/localCopy/eclipse/cdmlib/app-import/src/main/resources/SDD-Test-Simple.xml";
74
		return sourceUrl;
75
		
76
	}
77

    
78
	public static String arecaceae_pub(){
79
		//		Monocots rdf
80
		String sourceUrl = "file:C:/localCopy/eclipse/cdmlib/app-import/src/main/resources/arecaceae_pub.rdf";
81
		return sourceUrl;
82
	}
83

    
84
}
(9-9/14)