Subversion Repositories eFlore/Applications.cel

Rev

Rev 271 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 271 Rev 318
Line 25... Line 25...
25
	
25
	
Line 26... Line 26...
26
	private static String referentielGeo ;
26
	private static String referentielGeo ;
Line -... Line 27...
-
 
27
	
-
 
28
	private static String cleGoogleMaps ;
-
 
29
 
-
 
30
	private static String lienEfloreBaseUrl;
-
 
31
	
-
 
32
	private static String refTax;
27
	
33
	
28
	private static String cleGoogleMaps ;
34
	private static String refTaxVersion;
29
 
35
 
30
	/**
36
	/**
31
	 * Constructeur sans argument
37
	 * Constructeur sans argument
Line 49... Line 55...
49
			
55
			
50
			referentielGeo = Dictionary.getDictionary("configuration").get(
56
			referentielGeo = Dictionary.getDictionary("configuration").get(
Line 51... Line 57...
51
			"referentielGeo");
57
			"referentielGeo");
-
 
58
			
-
 
59
			cleGoogleMaps = Dictionary.getDictionary("configuration").get(
-
 
60
			"cleGoogleMaps");
-
 
61
			
-
 
62
			lienEfloreBaseUrl = Dictionary.getDictionary("configuration").get(
-
 
63
			"lienEfloreBaseUrl");
-
 
64
			
-
 
65
			refTax = Dictionary.getDictionary("configuration").get(
-
 
66
			"refTax");
52
			
67
			
Line 53... Line 68...
53
			cleGoogleMaps = Dictionary.getDictionary("configuration").get(
68
			refTaxVersion = Dictionary.getDictionary("configuration").get(
54
			"referentielGeo");
69
			"refTaxVersion");
55
			
70
			
-
 
71
		}
56
		}
72
		else
57
		else
73
		{
58
		{
74
			
59
			serviceBaseUrl = "http://localhost/jrest";
75
			serviceBaseUrl = "http://162.38.234.9/jrest";
-
 
76
			suiviBugUrl = "http://www.tela-botanica.net/suivi/index.php?do=newtask&project=2";
-
 
77
			aideBaseUrl = "http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCEL";
-
 
78
			imageBaseUrl = "http://162.38.234.9/Documents/images_serveur/";
-
 
79
			referentielGeo = "WGS84";
-
 
80
			cleGoogleMaps = "ABQIAAAADBUAHF9l14gI02QVAbUYJBQYIbFcBI1ENnSUwK1SMsxOkt3ljBTFFxjHcCePFsiX1MX5_m2r1MnSOw";
60
			suiviBugUrl = "http://www.tela-botanica.org/suivi/index.php?do=newtask&project=2";
81
			refTax = "BDNFF";
61
			aideBaseUrl = "http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCEL";
82
			refTaxVersion = "4.02";
Line 62... Line 83...
62
			imageBaseUrl = "http://localhost/Documents/images_serveur/"; 
83
			lienEfloreBaseUrl = "www.tela-botanica.org/eflore";
63
		}
84
		}
Line 115... Line 136...
115
	 */
136
	 */
116
	public static String getCleGoogleMaps() {
137
	public static String getCleGoogleMaps() {
117
		return cleGoogleMaps ;
138
		return cleGoogleMaps ;
118
	}
139
	}
Line -... Line 140...
-
 
140
 
-
 
141
	public static String getLienEfloreBaseUrl() {
-
 
142
		return lienEfloreBaseUrl;
-
 
143
		
-
 
144
	}
-
 
145
	
-
 
146
	public static String getRefTax() {
-
 
147
		return refTax;
-
 
148
		
-
 
149
	}
-
 
150
	
-
 
151
	public static String getRefTaxVersion() {
-
 
152
		return refTaxVersion;
-
 
153
		
-
 
154
	}
119
 
155