5
5
import com .atg .openssp .common .configuration .Context ;
6
6
import com .atg .openssp .common .configuration .ContextCache ;
7
7
import com .atg .openssp .common .configuration .ContextProperties ;
8
+ import com .atg .openssp .core .system .properties .MavenProperties ;
9
+
10
+ import java .time .LocalDateTime ;
8
11
9
12
/**
10
13
* @author André Schmer
@@ -28,10 +31,38 @@ public class LocalContext extends Context {
28
31
29
32
private static boolean isMetricsEnabled ;
30
33
31
- private static String sspVersion ;
34
+ private static String sspVersion = new MavenProperties ().getVersion ();
35
+
32
36
33
37
private static boolean isSspChannelEnabled ;
34
38
39
+ //#######################################
40
+ private static boolean isAppDataServiceEnabled = false ;
41
+
42
+ private static boolean isCurrencyDataServiceEnabled = false ;
43
+
44
+ private static boolean isLoginServiceEnabled = false ;
45
+
46
+ private static boolean isPricelayerDataServiceEnabled = false ;
47
+
48
+ private static boolean isSiteDataServiceEnabled = false ;
49
+
50
+ private static boolean isSupplierDataServiceEnabled = false ;
51
+
52
+ private static String appDataHandlerClass ;
53
+
54
+ private static String currencyDataHandlerClass ;
55
+
56
+ private static String loginHandlerClass ;
57
+
58
+ private static String pricelayerDataHandlerClass ;
59
+
60
+ private static String siteDataHandlerClass ;
61
+
62
+ private static String supplierDataHandlerClass ;
63
+ //#######################################
64
+
65
+
35
66
static {
36
67
initData ();
37
68
}
@@ -43,6 +74,20 @@ public static void refreshContext() {
43
74
isSspChannelEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .SSPCHANNEL ));
44
75
isVerboseEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .VERBOSE ));
45
76
isMetricsEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .METRICS ));
77
+
78
+ isAppDataServiceEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .APP_DATA_SERVICE_ENABLED ));
79
+ isCurrencyDataServiceEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .CURRENCY_DATA_SERVICE_ENABLED ));
80
+ isLoginServiceEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .LOGIN_SERVICE_ENABLED ));
81
+ isPricelayerDataServiceEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .PRICELAYER_DATA_SERVICE_ENABLED ));
82
+ isSiteDataServiceEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .SITE_DATA_SERVICE_ENABLED ));
83
+ isSupplierDataServiceEnabled = Boolean .parseBoolean (ContextCache .instance .get (ContextProperties .SUPPLIER_DATA_SERVICE_ENABLED ));
84
+
85
+ appDataHandlerClass = ContextCache .instance .get (ContextProperties .APP_DATA_HANDLER_CLASS );
86
+ currencyDataHandlerClass = ContextCache .instance .get (ContextProperties .CURRENCY_DATA_HANDLER_CLASS );
87
+ loginHandlerClass = ContextCache .instance .get (ContextProperties .LOGIN_HANDLER_CLASS );
88
+ pricelayerDataHandlerClass = ContextCache .instance .get (ContextProperties .PRICELAYER_DATA_HANDLER_CLASS );
89
+ siteDataHandlerClass = ContextCache .instance .get (ContextProperties .SITE_DATA_HANDLER_CLASS );
90
+ supplierDataHandlerClass = ContextCache .instance .get (ContextProperties .SUPPLIER_DATA_HANDLER_CLASS );
46
91
}
47
92
48
93
private static void initData () {
@@ -108,4 +153,54 @@ static void setVersion(final String version) {
108
153
static String getVersion () {
109
154
return sspVersion ;
110
155
}
156
+
157
+
158
+ public static boolean isAppDataServiceEnabled () {
159
+ return isAppDataServiceEnabled ;
160
+ }
161
+
162
+ public static boolean isCurrencyDataServiceEnabled () {
163
+ return isCurrencyDataServiceEnabled ;
164
+ }
165
+
166
+ public static boolean isLoginServiceEnabled () {
167
+ return isLoginServiceEnabled ;
168
+ }
169
+
170
+ public static boolean isPricelayerDataServiceEnabled () {
171
+ return isPricelayerDataServiceEnabled ;
172
+ }
173
+
174
+ public static boolean isSiteDataServiceEnabled () {
175
+ return isSiteDataServiceEnabled ;
176
+ }
177
+
178
+ public static boolean isSupplierDataServiceEnabled () {
179
+ return isSupplierDataServiceEnabled ;
180
+ }
181
+
182
+ public static String getAppDataHandlerClass () {
183
+ return appDataHandlerClass ;
184
+ }
185
+
186
+ public static String getCurrencyDataHandlerClass () {
187
+ return currencyDataHandlerClass ;
188
+ }
189
+
190
+ public static String getLoginHandlerClass () {
191
+ return loginHandlerClass ;
192
+ }
193
+
194
+ public static String getPricelayerDataHandlerClass () {
195
+ return pricelayerDataHandlerClass ;
196
+ }
197
+
198
+ public static String getSiteDataHandlerClass () {
199
+ return siteDataHandlerClass ;
200
+ }
201
+
202
+ public static String getSupplierDataHandlerClass () {
203
+ return supplierDataHandlerClass ;
204
+ }
205
+
111
206
}
0 commit comments