summaryrefslogtreecommitdiffstats
path: root/pki/base/console/src/com/netscape/admin/certsrv/config/install/WIExistingDBPage.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/console/src/com/netscape/admin/certsrv/config/install/WIExistingDBPage.java')
-rw-r--r--pki/base/console/src/com/netscape/admin/certsrv/config/install/WIExistingDBPage.java282
1 files changed, 282 insertions, 0 deletions
diff --git a/pki/base/console/src/com/netscape/admin/certsrv/config/install/WIExistingDBPage.java b/pki/base/console/src/com/netscape/admin/certsrv/config/install/WIExistingDBPage.java
new file mode 100644
index 000000000..93bbde830
--- /dev/null
+++ b/pki/base/console/src/com/netscape/admin/certsrv/config/install/WIExistingDBPage.java
@@ -0,0 +1,282 @@
+// --- BEGIN COPYRIGHT BLOCK ---
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; version 2 of the License.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+//
+// (C) 2007 Red Hat, Inc.
+// All rights reserved.
+// --- END COPYRIGHT BLOCK ---
+package com.netscape.admin.certsrv.config.install;
+
+import java.awt.event.*;
+import java.awt.*;
+import java.util.*;
+import javax.swing.*;
+import com.netscape.admin.certsrv.*;
+import com.netscape.admin.certsrv.connection.*;
+import com.netscape.admin.certsrv.wizard.*;
+import com.netscape.certsrv.common.*;
+import com.netscape.admin.certsrv.task.*;
+import com.netscape.management.client.console.*;
+import com.netscape.management.client.util.*;
+
+/**
+ * This panel is for cloning. It lets the user to enter the configuration
+ * information for the master database.
+ *
+ * @author Christine Ho
+ * @version $Revision$, $Date$
+ * @see com.netscape.admin.certsrv.config.install
+ */
+class WIExistingDBPage extends WizardBasePanel implements IWizardPanel {
+ private JTextField mRMPortText, mRMBindAsText, mRMHostText;
+ private JTextField mRMBaseDNText;
+ private JPasswordField mRMPasswordText;
+
+ private static final String PANELNAME = "EXISTINGDBWIZARD";
+ private static final String HELPINDEX =
+ "install-internaldb-configuration-wizard-help";
+ private static final String EMPTYSTR = " ";
+
+ WIExistingDBPage(JDialog parent) {
+ super(PANELNAME);
+ mParent = parent;
+ init();
+ }
+
+ WIExistingDBPage(JDialog parent, JFrame adminFrame) {
+ super(PANELNAME);
+ mParent = parent;
+ mAdminFrame = adminFrame;
+ init();
+ }
+
+ public boolean isLastPage() {
+ return false;
+ }
+
+ public void actionPerformed(ActionEvent e) {
+ }
+
+ public boolean initializePanel(WizardInfo info) {
+ InstallWizardInfo wizardInfo = (InstallWizardInfo)info;
+
+ if (wizardInfo.isCloning() && !wizardInfo.isConnectDBDone()) {
+ setBorder(makeTitledBorder(PANELNAME));
+ mRMBindAsText.setText(wizardInfo.getDBBindDN());
+ return true;
+ }
+
+ return false;
+ }
+
+ public boolean validatePanel() {
+ String rmhostname = mRMHostText.getText().trim();
+ String rmport = mRMPortText.getText().trim();
+ String rmbindDN = mRMBindAsText.getText().trim();
+ String rmpasswd = mRMPasswordText.getText().trim();
+
+ if (rmhostname.equals("")) {
+ setErrorMessage("EMPTYHOST");
+ return false;
+ }
+
+ if (rmport.equals("")) {
+ setErrorMessage("EMPTYPORT");
+ return false;
+ }
+
+ if (rmbindDN.equals("")) {
+ setErrorMessage("EMPTYBINDDN");
+ return false;
+ }
+
+ if (rmpasswd.equals("")) {
+ setErrorMessage("EMPTYPASSWD");
+ return false;
+ }
+
+ try {
+ Integer num = new Integer(rmport);
+ } catch (NumberFormatException e) {
+ setErrorMessage("NUMBERFORMAT");
+ return false;
+ }
+
+ return true;
+ }
+
+ public boolean concludePanel(WizardInfo info) {
+ InstallWizardInfo wizardInfo = (InstallWizardInfo)info;
+ cleanUpWizardInfo(wizardInfo);
+
+ String rawData = ConfigConstants.TASKID+"="+TaskId.TASK_CREATE_INTERNALDB;
+ rawData = rawData+"&"+ConfigConstants.OPTYPE+"="+OpDef.OP_MODIFY;
+ rawData = rawData+"&"+ConfigConstants.PR_DB_MODE+"=remote";
+ rawData = rawData+"&"+ConfigConstants.PR_HOST+"="+mRMHostText.getText();
+ rawData = rawData+"&"+ConfigConstants.PR_DB_PORT+"="+mRMPortText.getText();
+ rawData = rawData+"&"+ConfigConstants.PR_DB_BINDDN+"="+mRMBindAsText.getText();
+ rawData = rawData+"&"+ConfigConstants.PR_DB_PWD+"="+mRMPasswordText.getText();
+ rawData = rawData+"&"+ConfigConstants.PR_DB_NAME+"="+mRMBaseDNText.getText();
+ wizardInfo.setInternalDBPasswd(mRMPasswordText.getText().trim());
+ wizardInfo.setDBBindDN(mRMBindAsText.getText().trim());
+
+ startProgressStatus();
+ //CMSMessageBox dlg = new CMSMessageBox(mAdminFrame, "CGITASK", "CONNECTDB");
+
+ boolean ready = send(rawData, wizardInfo);
+
+ if (ready) {
+ rawData = ConfigConstants.TASKID+"="+TaskId.TASK_TOKEN_INFO;
+ rawData = rawData+"&"+ConfigConstants.OPTYPE+"="+OpDef.OP_READ;
+ ready = send(rawData, wizardInfo);
+ }
+ //dlg.setVisible(false);
+
+ endProgressStatus();
+
+ if (!ready) {
+ String str = getErrorMessage(wizardInfo);
+ if (str.equals("")) {
+ String errorMsg = mResource.getString(
+ PANELNAME+"_ERRORMSG");
+ setErrorMessage(errorMsg);
+ } else
+ setErrorMessage(str);
+ }
+
+ return ready;
+ }
+
+ public void callHelp() {
+ CMSAdminUtil.help(HELPINDEX);
+ }
+
+ protected void init() {
+ GridBagLayout gb = new GridBagLayout();
+ GridBagConstraints gbc = new GridBagConstraints();
+ setLayout(gb);
+
+ CMSAdminUtil.resetGBC(gbc);
+ JTextArea desc = createTextArea(mResource.getString(
+ PANELNAME+"_TEXT_HEADING_LABEL"));
+ gbc.anchor = gbc.NORTHWEST;
+ gbc.weightx = 1.0;
+ gbc.weighty = 0.0;
+ gbc.insets = new Insets(COMPONENT_SPACE,COMPONENT_SPACE,
+ COMPONENT_SPACE,COMPONENT_SPACE);
+ gbc.gridwidth = gbc.REMAINDER;
+ add(desc, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ JLabel instanceIDLbl = makeJLabel("REMOTEHOST");
+ gbc.anchor = gbc.NORTHEAST;
+ gbc.fill = gbc.NONE;
+ gbc.insets = new Insets(COMPONENT_SPACE, 0, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(instanceIDLbl, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ mRMHostText = makeJTextField(30);
+ gbc.anchor = gbc.NORTHWEST;
+ gbc.gridwidth = gbc.REMAINDER;
+ //gbc.fill = gbc.NONE;
+ gbc.insets = new Insets(COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(mRMHostText, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ JLabel portNumber = makeJLabel("REMOTEPORT");
+ gbc.anchor = gbc.NORTHEAST;
+ gbc.fill = gbc.NONE;
+ gbc.insets = new Insets(0, 0,
+ COMPONENT_SPACE,COMPONENT_SPACE);
+ add(portNumber, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ mRMPortText = makeJTextField(10);
+ gbc.anchor = gbc.WEST;
+ gbc.fill = gbc.HORIZONTAL;
+ gbc.gridwidth = gbc.REMAINDER;
+ gbc.insets = new Insets(0, COMPONENT_SPACE,
+ COMPONENT_SPACE,COMPONENT_SPACE);
+ add(mRMPortText, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ JLabel mRMBindAsLabel = makeJLabel("REMOTEADMIN");
+ //gbc.anchor = gbc.NORTHWEST;
+ gbc.anchor = gbc.NORTHEAST;
+ gbc.fill = gbc.NONE;
+ gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(mRMBindAsLabel, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ mRMBindAsText = makeJTextField(30);
+ gbc.anchor = gbc.NORTHWEST;
+ //gbc.fill = gbc.NONE;
+ gbc.gridwidth = gbc.REMAINDER;
+ gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(mRMBindAsText, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ JLabel mRMPasswordLabel = makeJLabel("REMOTEPWD");
+ gbc.anchor = gbc.NORTHEAST;
+ gbc.fill = gbc.NONE;
+ gbc.insets = new Insets(0, 0, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(mRMPasswordLabel, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ mRMPasswordText = makeJPasswordField(30);
+ gbc.anchor = gbc.WEST;
+ gbc.fill = gbc.HORIZONTAL;
+ gbc.gridwidth = gbc.REMAINDER;
+ gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(mRMPasswordText, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ JLabel mRMBaseDNLabel = makeJLabel("REMOTEBASEDN");
+ //gbc.anchor = gbc.NORTHWEST;
+ gbc.anchor = gbc.NORTHEAST;
+ gbc.fill = gbc.NONE;
+ gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(mRMBaseDNLabel, gbc);
+
+ CMSAdminUtil.resetGBC(gbc);
+ mRMBaseDNText = makeJTextField(30);
+ gbc.anchor = gbc.NORTHWEST;
+ //gbc.fill = gbc.NONE;
+ gbc.gridwidth = gbc.REMAINDER;
+ gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE,
+ COMPONENT_SPACE);
+ add(mRMBaseDNText, gbc);
+
+ JLabel dummy = new JLabel(" ");
+ CMSAdminUtil.resetGBC(gbc);
+ gbc.anchor = gbc.NORTHWEST;
+ gbc.gridwidth = gbc.REMAINDER;
+ gbc.gridheight = gbc.REMAINDER;
+ gbc.weighty = 1.0;
+ add(dummy, gbc);
+ }
+
+ public void getUpdateInfo(WizardInfo info) {
+ InstallWizardInfo wizardInfo = (InstallWizardInfo)info;
+ wizardInfo.setDBCreated(ConfigConstants.TRUE);
+ wizardInfo.setDBCreateNow(ConfigConstants.FALSE);
+ wizardInfo.setConnectDBDone(ConfigConstants.TRUE);
+ }
+}