/pki-console-9.0.5/base/console/src/com/netscape/admin/certsrv/keycert/WInstallStatusPage.java

# · Java · 105 lines · 66 code · 15 blank · 24 comment · 3 complexity · 2e4ead049e9982ffd984d55ddb504dcf MD5 · raw file

  1. // --- BEGIN COPYRIGHT BLOCK ---
  2. // This program is free software; you can redistribute it and/or modify
  3. // it under the terms of the GNU General Public License as published by
  4. // the Free Software Foundation; version 2 of the License.
  5. //
  6. // This program is distributed in the hope that it will be useful,
  7. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. // GNU General Public License for more details.
  10. //
  11. // You should have received a copy of the GNU General Public License along
  12. // with this program; if not, write to the Free Software Foundation, Inc.,
  13. // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  14. //
  15. // (C) 2007 Red Hat, Inc.
  16. // All rights reserved.
  17. // --- END COPYRIGHT BLOCK ---
  18. package com.netscape.admin.certsrv.keycert;
  19. import java.awt.*;
  20. import javax.swing.*;
  21. import com.netscape.admin.certsrv.*;
  22. import com.netscape.admin.certsrv.connection.*;
  23. import com.netscape.admin.certsrv.wizard.*;
  24. import com.netscape.certsrv.common.*;
  25. /**
  26. * Introduction page for certificate setup wizard.
  27. *
  28. * @author Christine Ho
  29. * @version $Revision: 1211 $, $Date: 2010-08-18 10:15:37 -0700 (Wed, 18 Aug 2010) $
  30. * @see com.netscape.admin.certsrv.keycert
  31. */
  32. class WInstallStatusPage extends WizardBasePanel implements IWizardPanel {
  33. private JTextArea mDesc;
  34. private static final String PANELNAME = "INSTALLSTATUSWIZARD";
  35. private static final String HELPINDEX =
  36. "configuration-keycert-wizard-installcertstatus-help";
  37. WInstallStatusPage(JDialog parent) {
  38. super(PANELNAME);
  39. mParent = parent;
  40. init();
  41. }
  42. WInstallStatusPage(JDialog parent, JFrame frame) {
  43. super(PANELNAME);
  44. mParent = parent;
  45. mAdminFrame = frame;
  46. init();
  47. }
  48. public boolean isLastPage() {
  49. return false;
  50. }
  51. public boolean initializePanel(WizardInfo info) {
  52. CertSetupWizardInfo wizardInfo = (CertSetupWizardInfo)info;
  53. if (wizardInfo.getOperationType().equals(wizardInfo.REQUESTTYPE))
  54. return false;
  55. if (wizardInfo.isCertAdded().booleanValue())
  56. mDesc.setText(mResource.getString(
  57. "INSTALLSTATUSWIZARD_TEXT_SUCCESS_LABEL"));
  58. else
  59. mDesc.setText(mResource.getString(
  60. "INSTALLSTATUSWIZARD_TEXT_FAIL_LABEL"));
  61. setBorder(makeTitledBorder(PANELNAME));
  62. return true;
  63. }
  64. public boolean validatePanel() {
  65. return true;
  66. }
  67. public boolean concludePanel(WizardInfo info) {
  68. return true;
  69. }
  70. public void callHelp() {
  71. CMSAdminUtil.help(HELPINDEX);
  72. }
  73. protected void init() {
  74. GridBagLayout gb = new GridBagLayout();
  75. GridBagConstraints gbc = new GridBagConstraints();
  76. setLayout(gb);
  77. mDesc = createTextArea("");
  78. CMSAdminUtil.resetGBC(gbc);
  79. gbc.anchor = gbc.NORTHWEST;
  80. gbc.weightx = 1.0;
  81. gbc.weighty = 1.0;
  82. gbc.insets = new Insets(COMPONENT_SPACE,COMPONENT_SPACE,
  83. COMPONENT_SPACE,COMPONENT_SPACE);
  84. gbc.gridwidth = gbc.REMAINDER;
  85. add(mDesc, gbc);
  86. super.init();
  87. }
  88. public void getUpdateInfo(WizardInfo info) {
  89. }
  90. }