Esempio n. 1
0
 public static void load() {
   try {
     load(false);
   } catch (Exception e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
 }
Esempio n. 2
0
 public static ModelIo getModelIo() {
   if (!loaded) load();
   return modelIo;
 }
Esempio n. 3
0
 public static Proxifier getProxifier() {
   if (!loaded) load();
   return proxifier;
 }
Esempio n. 4
0
 public static ModelService getModelService() {
   if (!loaded) load();
   return modelService;
 }
Esempio n. 5
0
 public static Roster getRoster() {
   if (!loaded) load();
   return roster;
 }
Esempio n. 6
0
 public static ClientStats getStatsTracker() {
   if (!loaded) load();
   return statsTracker;
 }
Esempio n. 7
0
 public static CountryService getCountryService() {
   if (!loaded) load();
   return countryService;
 }
Esempio n. 8
0
 public static LanternTrustStore getTrustStore() {
   if (!loaded) load();
   return trustStore;
 }
Esempio n. 9
0
 public static Model getModel() {
   if (!loaded) load();
   return model;
 }
Esempio n. 10
0
 public static LanternXmppUtil getLanternXmppUtil() {
   if (!loaded) load();
   return lanternXmppUtil;
 }
Esempio n. 11
0
 public static LanternKeyStoreManager getKsm() {
   if (!loaded) load();
   return ksm;
 }
Esempio n. 12
0
 public static LanternSocketsUtil getSocketsUtil() {
   if (!loaded) load();
   return socketsUtil;
 }
Esempio n. 13
0
 public static DefaultXmppHandler getXmppHandler() {
   if (!loaded) load();
   return xmppHandler;
 }
Esempio n. 14
0
 public static JettyLauncher getJettyLauncher() {
   if (!loaded) load();
   return jettyLauncher;
 }
Esempio n. 15
0
 public static ModelUtils getModelUtils() {
   if (!loaded) load();
   return modelUtils;
 }
Esempio n. 16
0
 public static LocalCipherProvider getLocalCipherProvider() {
   if (!loaded) load();
   return localCipherProvider;
 }
Esempio n. 17
0
 public static ProxyTracker getProxyTracker() {
   if (!loaded) load();
   return proxyTracker;
 }
Esempio n. 18
0
 public static EncryptedFileService getEncryptedFileService() {
   if (!loaded) load();
   return encryptedFileService;
 }
Esempio n. 19
0
 public static HttpClientFactory getHttpClientFactory() {
   if (!loaded) load();
   return httpClientFactory;
 }
Esempio n. 20
0
 public static MessageService getMessageService() {
   if (!loaded) load();
   return messageService;
 }
Esempio n. 21
0
 public static GeoIpLookupService getGeoIpLookupService() {
   if (!loaded) load();
   return geoIpLookupService;
 }
Esempio n. 22
0
 public static void load() {
   load(false);
 }