summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cms/servlet/csadmin/model/ConfigurationRequest.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/cms/servlet/csadmin/model/ConfigurationRequest.java')
-rw-r--r--base/common/src/com/netscape/cms/servlet/csadmin/model/ConfigurationRequest.java724
1 files changed, 0 insertions, 724 deletions
diff --git a/base/common/src/com/netscape/cms/servlet/csadmin/model/ConfigurationRequest.java b/base/common/src/com/netscape/cms/servlet/csadmin/model/ConfigurationRequest.java
deleted file mode 100644
index b42403f4e..000000000
--- a/base/common/src/com/netscape/cms/servlet/csadmin/model/ConfigurationRequest.java
+++ /dev/null
@@ -1,724 +0,0 @@
-// --- 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) 2012 Red Hat, Inc.
-// All rights reserved.
-// --- END COPYRIGHT BLOCK ---
-package com.netscape.cms.servlet.csadmin.model;
-
-import java.util.Collection;
-
-import javax.ws.rs.core.MultivaluedMap;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElementRef;
-import javax.xml.bind.annotation.XmlRootElement;
-
-/**
- * @author alee
- *
- */
-@XmlRootElement(name="ConfigurationRequest")
-@XmlAccessorType(XmlAccessType.FIELD)
-public class ConfigurationRequest {
- private static final String PIN = "pin";
- private static final String TOKEN = "token";
- private static final String TOKEN_PASSWORD = "tokenPassword";
- private static final String SECURITY_DOMAIN_TYPE = "securityDomainType";
- private static final String SECURITY_DOMAIN_URI = "securityDomainUri";
- private static final String SECURITY_DOMAIN_NAME = "securityDomainName";
- private static final String SECURITY_DOMAIN_USER = "securityDomainUser";
- private static final String SECURITY_DOMAIN_PASSWORD = "securityDomainPassword";
- private static final String IS_CLONE = "isClone";
- private static final String CLONE_URI = "cloneUri";
- private static final String SUBSYSTEM_NAME = "subsystemName";
- private static final String P12_FILE = "p12File";
- private static final String P12_PASSWORD = "p12Password";
- private static final String HIERARCHY = "hierarchy";
- private static final String DSHOST = "dsHost";
- private static final String DSPORT = "dsPort";
- private static final String BASEDN = "basedn";
- private static final String BINDDN = "binddn";
- private static final String DATABASE = "database";
- private static final String SECURECONN = "secureConn";
- private static final String REMOVEDATA = "removeData";
- private static final String MASTER_REPLICATION_PORT = "masterReplicationPort";
- private static final String CLONE_REPLICATION_PORT = "cloneReplicationPort";
- private static final String REPLICATION_SECURITY = "replicationSecurity";
- private static final String ISSUING_CA = "issuingCa";
- private static final String BACKUP_KEYS = "backupKeys";
- private static final String BACKUP_FILE = "backupFile";
- private static final String BACKUP_PASSWORD = "backupPassword";
- private static final String ADMIN_UID = "adminUid";
- private static final String ADMIN_EMAIL = "adminEmail";
- private static final String ADMIN_PASSWORD = "adminPassword";
- private static final String ADMIN_CERT_REQUEST = "adminCertRequest";
- private static final String ADMIN_CERT_REQUEST_TYPE = "adminCertRequestType";
- private static final String ADMIN_SUBJECT_DN = "adminSubjectDN";
- private static final String ADMIN_NAME = "adminName";
- private static final String ADMIN_PROFILE_ID = "adminProfileID";
- private static final String STEP_TWO = "stepTwo";
-
- //defaults
- public static final String TOKEN_DEFAULT = "Internal Key Storage Token";
- public static final String NEW_DOMAIN = "newdomain";
- public static final String EXISTING_DOMAIN = "existingdomain";
-
- @XmlElement
- protected String pin;
-
- @XmlElement(defaultValue=TOKEN_DEFAULT)
- protected String token;
-
- @XmlElement
- protected String tokenPassword;
-
- @XmlElement
- protected String securityDomainType;
-
- @XmlElement
- protected String securityDomainUri;
-
- @XmlElement
- protected String securityDomainName;
-
- @XmlElement
- protected String securityDomainUser;
-
- @XmlElement
- protected String securityDomainPassword;
-
- @XmlElement(defaultValue="false")
- protected String isClone;
-
- @XmlElement
- protected String cloneUri;
-
- @XmlElement
- protected String subsystemName;
-
- @XmlElement
- protected String p12File;
-
- @XmlElement
- protected String p12Password;
-
- @XmlElement
- protected String hierarchy;
-
- @XmlElement
- protected String dsHost;
-
- @XmlElement
- protected String dsPort;
-
- @XmlElement
- protected String baseDN;
-
- @XmlElement
- protected String bindDN;
-
- @XmlElement
- protected String bindpwd;
-
- @XmlElement
- protected String database;
-
- @XmlElement(defaultValue = "off")
- protected String secureConn;
-
- @XmlElement
- protected String removeData;
-
- @XmlElement
- protected String masterReplicationPort;
-
- @XmlElement
- protected String cloneReplicationPort;
-
- @XmlElement
- protected String replicationSecurity;
-
- @XmlElementRef
- protected Collection<SystemCertData> systemCerts;
-
- @XmlElement
- protected String issuingCA;
-
- @XmlElement
- protected String backupKeys;
-
- @XmlElement
- protected String backupPassword;
-
- @XmlElement
- protected String backupFile;
-
- @XmlElement
- protected String adminUID;
-
- @XmlElement
- protected String adminPassword;
-
- @XmlElement
- protected String adminEmail;
-
- @XmlElement
- protected String adminCertRequest;
-
- @XmlElement
- protected String adminCertRequestType;
-
- @XmlElement
- protected String adminSubjectDN;
-
- @XmlElement
- protected String adminName;
-
- @XmlElement
- protected String adminProfileID;
-
- @XmlElement
- protected String stepTwo;
-
- public ConfigurationRequest() {
- // required for JAXB
- }
-
- public ConfigurationRequest(MultivaluedMap<String, String> form) {
- pin = form.getFirst(PIN);
- token = form.getFirst(TOKEN);
- tokenPassword = form.getFirst(TOKEN_PASSWORD);
- securityDomainType = form.getFirst(SECURITY_DOMAIN_TYPE);
- securityDomainUri = form.getFirst(SECURITY_DOMAIN_URI);
- securityDomainName = form.getFirst(SECURITY_DOMAIN_NAME);
- securityDomainUser = form.getFirst(SECURITY_DOMAIN_USER);
- securityDomainPassword = form.getFirst(SECURITY_DOMAIN_PASSWORD);
- isClone = form.getFirst(IS_CLONE);
- cloneUri = form.getFirst(CLONE_URI);
- subsystemName = form.getFirst(SUBSYSTEM_NAME);
- p12File = form.getFirst(P12_FILE);
- p12Password = form.getFirst(P12_PASSWORD);
- hierarchy = form.getFirst(HIERARCHY);
- dsHost = form.getFirst(DSHOST);
- dsPort = form.getFirst(DSPORT);
- baseDN = form.getFirst(BASEDN);
- bindDN = form.getFirst(BINDDN);
- database = form.getFirst(DATABASE);
- secureConn = form.getFirst(SECURECONN);
- removeData = form.getFirst(REMOVEDATA);
- masterReplicationPort = form.getFirst(MASTER_REPLICATION_PORT);
- cloneReplicationPort = form.getFirst(CLONE_REPLICATION_PORT);
- replicationSecurity = form.getFirst(REPLICATION_SECURITY);
- //TODO - figure out how to get the cert requests
- issuingCA = form.getFirst(ISSUING_CA);
- backupFile = form.getFirst(BACKUP_FILE);
- backupPassword = form.getFirst(BACKUP_PASSWORD);
- backupKeys = form.getFirst(BACKUP_KEYS);
- adminUID = form.getFirst(ADMIN_UID);
- adminEmail = form.getFirst(ADMIN_EMAIL);
- adminPassword = form.getFirst(ADMIN_PASSWORD);
- adminCertRequest = form.getFirst(ADMIN_CERT_REQUEST);
- adminCertRequestType = form.getFirst(ADMIN_CERT_REQUEST_TYPE);
- adminSubjectDN = form.getFirst(ADMIN_SUBJECT_DN);
- adminName = form.getFirst(ADMIN_NAME);
- adminProfileID = form.getFirst(ADMIN_PROFILE_ID);
- stepTwo = form.getFirst(STEP_TWO);
- }
-
-
- public String getSubsystemName() {
- return subsystemName;
- }
-
- public void setSubsystemName(String subsystemName) {
- this.subsystemName = subsystemName;
- }
-
- public String getPin() {
- return pin;
- }
-
- public void setPin(String pin) {
- this.pin = pin;
- }
-
- public String getToken() {
- return token;
- }
-
- public void setToken(String token) {
- this.token = token;
- }
-
- public String getSecurityDomainType() {
- return securityDomainType;
- }
-
- public void setSecurityDomainType(String securityDomainType) {
- this.securityDomainType = securityDomainType;
- }
-
- public String getSecurityDomainUri() {
- return securityDomainUri;
- }
-
- public void setSecurityDomainUri(String securityDomainUri) {
- this.securityDomainUri = securityDomainUri;
- }
-
- public String getSecurityDomainName() {
- return securityDomainName;
- }
-
- public void setSecurityDomainName(String securityDomainName) {
- this.securityDomainName = securityDomainName;
- }
-
- public String getSecurityDomainUser() {
- return securityDomainUser;
- }
-
- public void setSecurityDomainUser(String securityDomainUser) {
- this.securityDomainUser = securityDomainUser;
- }
-
- public String getSecurityDomainPassword() {
- return securityDomainPassword;
- }
-
- public void setSecurityDomainPassword(String securityDomainPassword) {
- this.securityDomainPassword = securityDomainPassword;
- }
-
- public String getIsClone() {
- return isClone;
- }
-
- public void setIsClone(String isClone) {
- this.isClone = isClone;
- }
-
- public String getCloneUri() {
- return cloneUri;
- }
-
- public void setCloneUri(String cloneUri) {
- this.cloneUri = cloneUri;
- }
-
- /**
- * @return the p12File
- */
- public String getP12File() {
- return p12File;
- }
-
- /**
- * @param p12File the p12File to set
- */
- public void setP12File(String p12File) {
- this.p12File = p12File;
- }
-
- /**
- * @return the p12Password
- */
- public String getP12Password() {
- return p12Password;
- }
-
- /**
- * @param p12Password the p12Password to set
- */
- public void setP12Password(String p12Password) {
- this.p12Password = p12Password;
- }
-
- /**
- * @return the tokenPassword
- */
- public String getTokenPassword() {
- return tokenPassword;
- }
-
- /**
- * @param tokenPassword the tokenPassword to set
- */
- public void setTokenPassword(String tokenPassword) {
- this.tokenPassword = tokenPassword;
- }
-
- /**
- * @return the hierarchy
- */
- public String getHierarchy() {
- return hierarchy;
- }
-
- /**
- * @param hierarchy the hierarchy to set
- */
- public void setHierarchy(String hierarchy) {
- this.hierarchy = hierarchy;
- }
-
- /**
- * @return the dsHost
- */
- public String getDsHost() {
- return dsHost;
- }
-
- /**
- * @param dsHost the dsHost to set
- */
- public void setDsHost(String dsHost) {
- this.dsHost = dsHost;
- }
-
- /**
- * @return the dsPort
- */
- public String getDsPort() {
- return dsPort;
- }
-
- /**
- * @param dsPort the dsPort to set
- */
- public void setDsPort(String dsPort) {
- this.dsPort = dsPort;
- }
-
- /**
- * @return the baseDN
- */
- public String getBaseDN() {
- return baseDN;
- }
-
- /**
- * @param baseDN the baseDN to set
- */
- public void setBaseDN(String baseDN) {
- this.baseDN = baseDN;
- }
-
- /**
- * @return the bindDN
- */
- public String getBindDN() {
- return bindDN;
- }
-
- /**
- * @param bindDN the bindDN to set
- */
- public void setBindDN(String bindDN) {
- this.bindDN = bindDN;
- }
-
- /**
- * @return the bindpwd
- */
- public String getBindpwd() {
- return bindpwd;
- }
-
- /**
- * @param bindpwd the bindpwd to set
- */
- public void setBindpwd(String bindpwd) {
- this.bindpwd = bindpwd;
- }
-
- /**
- * @return the secureConn
- */
- public String getSecureConn() {
- return secureConn;
- }
-
- /**
- * @param secureConn the secureConn to set
- */
- public void setSecureConn(String secureConn) {
- this.secureConn = secureConn;
- }
-
- /**
- * @return the removeData
- */
- public String getRemoveData() {
- return removeData;
- }
-
- /**
- * @param removeData the removeData to set
- */
- public void setRemoveData(String removeData) {
- this.removeData = removeData;
- }
-
- /**
- * @return the masterReplicationPort
- */
- public String getMasterReplicationPort() {
- return masterReplicationPort;
- }
-
- /**
- * @param masterReplicationPort the masterReplicationPort to set
- */
- public void setMasterReplicationPort(String masterReplicationPort) {
- this.masterReplicationPort = masterReplicationPort;
- }
-
- /**
- * @return the cloneReplicationPort
- */
- public String getCloneReplicationPort() {
- return cloneReplicationPort;
- }
-
- /**
- * @param cloneReplicationPort the cloneReplicationPort to set
- */
- public void setCloneReplicationPort(String cloneReplicationPort) {
- this.cloneReplicationPort = cloneReplicationPort;
- }
-
- /**
- * @return the replicationSecurity
- */
- public String getReplicationSecurity() {
- return replicationSecurity;
- }
-
- /**
- * @param replicationSecurity the replicationSecurity to set
- */
- public void setReplicationSecurity(String replicationSecurity) {
- this.replicationSecurity = replicationSecurity;
- }
-
- /**
- * @return the database
- */
- public String getDatabase() {
- return database;
- }
-
- /**
- * @param database the database to set
- */
- public void setDatabase(String database) {
- this.database = database;
- }
-
- /**
- *
- * @return systemCerts
- */
- public Collection<SystemCertData> getSystemCerts() {
- return systemCerts;
- }
-
- /**
- *
- * @param systemCerts
- */
- public void setSystemCerts(Collection<SystemCertData> systemCerts) {
- this.systemCerts = systemCerts;
- }
-
- /**
- * @return the issuingCA
- */
- public String getIssuingCA() {
- return issuingCA;
- }
-
- /**
- * @param issuingCA the issuingCA to set
- */
- public void setIssuingCA(String issuingCA) {
- this.issuingCA = issuingCA;
- }
-
- /**
- * @return the backupKeys
- */
- public String getBackupKeys() {
- return backupKeys;
- }
-
- /**
- * @param backupKeys the backupKeys to set
- */
- public void setBackupKeys(String backupKeys) {
- this.backupKeys = backupKeys;
- }
-
- /**
- * @return the backupFile
- */
- public String getBackupFile() {
- return backupFile;
- }
-
- /**
- * @param backupFile the backupFile to set
- */
- public void setBackupFile(String backupFile) {
- this.backupFile = backupFile;
- }
-
- /**
- * @return the backupPassword
- */
- public String getBackupPassword() {
- return backupPassword;
- }
-
- /**
- * @param backupPassword the backupPassword to set
- */
- public void setBackupPassword(String backupPassword) {
- this.backupPassword = backupPassword;
- }
-
- /**
- * @return the adminUID
- */
- public String getAdminUID() {
- return adminUID;
- }
-
- /**
- * @param adminUID the adminUID to set
- */
- public void setAdminUID(String adminUID) {
- this.adminUID = adminUID;
- }
-
- /**
- * @return the adminPassword
- */
- public String getAdminPassword() {
- return adminPassword;
- }
-
- /**
- * @param adminPassword the adminPassword to set
- */
- public void setAdminPassword(String adminPassword) {
- this.adminPassword = adminPassword;
- }
-
- /**
- * @return the adminEmail
- */
- public String getAdminEmail() {
- return adminEmail;
- }
-
- /**
- * @param adminEmail the adminEmail to set
- */
- public void setAdminEmail(String adminEmail) {
- this.adminEmail = adminEmail;
- }
-
- /**
- * @return the adminCertRequest
- */
- public String getAdminCertRequest() {
- return adminCertRequest;
- }
-
- /**
- * @param adminCertRequest the adminCertRequest to set
- */
- public void setAdminCertRequest(String adminCertRequest) {
- this.adminCertRequest = adminCertRequest;
- }
-
- /**
- * @return the adminCertRequestType
- */
- public String getAdminCertRequestType() {
- return adminCertRequestType;
- }
-
- /**
- * @param adminCertRequestType the adminCertRequestType to set
- */
- public void setAdminCertRequestType(String adminCertRequestType) {
- this.adminCertRequestType = adminCertRequestType;
- }
-
- /**
- * @return the adminSubjectDN
- */
- public String getAdminSubjectDN() {
- return adminSubjectDN;
- }
-
- /**
- * @param adminSubjectDN the adminSubjectDN to set
- */
- public void setAdminSubjectDN(String adminSubjectDN) {
- this.adminSubjectDN = adminSubjectDN;
- }
-
- /**
- * @return the adminName
- */
- public String getAdminName() {
- return adminName;
- }
-
- /**
- * @param adminName the adminName to set
- */
- public void setAdminName(String adminName) {
- this.adminName = adminName;
- }
-
- /**
- * @return the adminProfileID
- */
- public String getAdminProfileID() {
- return adminProfileID;
- }
-
- /**
- * @param adminProfileID the adminProfileID to set
- */
- public void setAdminProfileID(String adminProfileID) {
- this.adminProfileID = adminProfileID;
- }
-
- public String getStepTwo() {
- return stepTwo;
- }
-
- public void setStepTwo(String stepTwo) {
- this.stepTwo = stepTwo;
- }
-
-}