Exemple #1
0
  /**
   * Performs all necessary processing when this activity is created.
   *
   * @param state The state information for this activity.
   */
  @Override()
  protected void onCreate(final Bundle state) {
    logEnter(LOG_TAG, "onCreate", state);

    super.onCreate(state);

    final Intent i = getIntent();
    final Bundle extras = i.getExtras();
    restoreState(extras);

    id = instance.getID();
    host = instance.getHost();
    port = instance.getPort();
    useSSL = instance.useSSL();
    useStartTLS = instance.useStartTLS();
    bindDN = instance.getBindDN();
    bindPW = instance.getBindPassword();
    baseDN = instance.getBaseDN();
  }