Exemplo n.º 1
0
  public boolean concludePanel(WizardInfo info) {
    if (super.concludePanel(info)) {
      InstallWizardInfo wizardInfo = (InstallWizardInfo) info;
      wizardInfo.put(ConfigConstants.STAGE_OCSP_CERT_REQUEST, ConfigConstants.TRUE);
      return true;
    }

    return false;
  }
Exemplo n.º 2
0
  public boolean initializePanel(WizardInfo info) {
    InstallWizardInfo wizardInfo = (InstallWizardInfo) info;
    if (wizardInfo.isCloning() && wizardInfo.isOCSPCloningDone()) return false;

    if (wizardInfo.isOCSPCertLocalCA()
        || !wizardInfo.isInstallCertNow()
        || !wizardInfo.isOCSPInstalled()
        || wizardInfo.isOCSPCertInstalledDone()) return false;

    mHelpIndex = OCSPHELPINDEX;
    return super.initializePanel(info);
  }