Package de.iritgo.aktario.core.base

Examples of de.iritgo.aktario.core.base.SystemProperties


  /**
   * Start the client gui.
   */
  public void startGUI()
  {
    final SystemProperties sysProperties = Engine.instance().getSystemProperties();

    if (sysProperties.getBool("autoLogin", false))
    {
      CommandTools.performAsync(new Command()
      {
        public void perform()
        {
          UserLoginHelper.login(null, sysProperties.getString("autoLoginServer", null), sysProperties
                  .getString("autoLoginUser", null), StringTools.decode(sysProperties.getString(
                  "autoLoginPassword", null)), false, false);
        }
      });
    }
    else
View Full Code Here

TOP

Related Classes of de.iritgo.aktario.core.base.SystemProperties

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.