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