summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/crl/CMSCertificateIssuerExtension.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/crl/CMSCertificateIssuerExtension.java')
-rw-r--r--pki/base/common/src/com/netscape/cms/crl/CMSCertificateIssuerExtension.java224
1 files changed, 0 insertions, 224 deletions
diff --git a/pki/base/common/src/com/netscape/cms/crl/CMSCertificateIssuerExtension.java b/pki/base/common/src/com/netscape/cms/crl/CMSCertificateIssuerExtension.java
deleted file mode 100644
index b0bf20856..000000000
--- a/pki/base/common/src/com/netscape/cms/crl/CMSCertificateIssuerExtension.java
+++ /dev/null
@@ -1,224 +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) 2007 Red Hat, Inc.
-// All rights reserved.
-// --- END COPYRIGHT BLOCK ---
-package com.netscape.cms.crl;
-
-import java.io.IOException;
-import java.util.Locale;
-
-import netscape.security.x509.CertificateIssuerExtension;
-import netscape.security.x509.Extension;
-import netscape.security.x509.GeneralNames;
-import netscape.security.x509.PKIXExtensions;
-import netscape.security.x509.URIName;
-import netscape.security.x509.X500Name;
-
-import com.netscape.certsrv.apps.CMS;
-import com.netscape.certsrv.base.EBaseException;
-import com.netscape.certsrv.base.EPropertyNotFound;
-import com.netscape.certsrv.base.IConfigStore;
-import com.netscape.certsrv.base.IExtendedPluginInfo;
-import com.netscape.certsrv.ca.ICMSCRLExtension;
-import com.netscape.certsrv.common.NameValuePairs;
-import com.netscape.certsrv.logging.ILogger;
-
-/**
- * This represents a certificate issuer extension.
- *
- * @version $Revision$, $Date$
- */
-public class CMSCertificateIssuerExtension
- implements ICMSCRLExtension, IExtendedPluginInfo {
- private ILogger mLogger = CMS.getLogger();
-
- public CMSCertificateIssuerExtension() {
- }
-
- public Extension setCRLExtensionCriticality(Extension ext,
- boolean critical) {
- CertificateIssuerExtension certIssuerExt = null;
- GeneralNames names = null;
-
- try {
- names = (GeneralNames) ((CertificateIssuerExtension) ext).get(
- CertificateIssuerExtension.CERTIFICATE_ISSUER);
- certIssuerExt = new CertificateIssuerExtension(Boolean.valueOf(critical),
- names);
- } catch (IOException e) {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_CERT_ISSUER_EXT", e.toString()));
- }
- return certIssuerExt;
- }
-
- public Extension getCRLExtension(IConfigStore config,
- Object ip,
- boolean critical) {
- CertificateIssuerExtension certIssuerExt = null;
- int numNames = 0;
-
- try {
- numNames = config.getInteger("numNames", 0);
- } catch (EBaseException e) {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_INVALID_NUM_NAMES", e.toString()));
- }
- if (numNames > 0) {
- GeneralNames names = new GeneralNames();
-
- for (int i = 0; i < numNames; i++) {
- String nameType = null;
-
- try {
- nameType = config.getString("nameType" + i);
- } catch (EPropertyNotFound e) {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("CRL_CREATE_UNDEFINED_TYPE", Integer.toString(i), e.toString()));
- } catch (EBaseException e) {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("CRL_CREATE_INVALID_TYPE", Integer.toString(i), e.toString()));
- }
-
- if (nameType != null) {
- String name = null;
-
- try {
- name = config.getString("name" + i);
- } catch (EPropertyNotFound e) {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("CRL_CREATE_UNDEFINED_TYPE", Integer.toString(i), e.toString()));
- } catch (EBaseException e) {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("CRL_CREATE_INVALID_TYPE", Integer.toString(i), e.toString()));
- }
-
- if (name != null && name.length() > 0) {
- if (nameType.equalsIgnoreCase("DirectoryName")) {
- try {
- X500Name dirName = new X500Name(name);
-
- names.addElement(dirName);
- } catch (IOException e) {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_INVALID_500NAME", e.toString()));
- }
- } else if (nameType.equalsIgnoreCase("URI")) {
- URIName uriName = new URIName(name);
-
- names.addElement(uriName);
- } else {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_INVALID_NAME_TYPE", nameType));
- }
- }
- }
- }
-
- if (names.size() > 0) {
- try {
- certIssuerExt = new CertificateIssuerExtension(
- Boolean.valueOf(critical), names);
- } catch (IOException e) {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_CERT_ISSUER_EXT", e.toString()));
- }
- }
- }
-
- return certIssuerExt;
- }
-
- public String getCRLExtOID() {
- return PKIXExtensions.CertificateIssuer_Id.toString();
- }
-
- public void getConfigParams(IConfigStore config, NameValuePairs nvp) {
- int numNames = 0;
-
- try {
- numNames = config.getInteger("numNames", 0);
- } catch (EBaseException e) {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_INVALID_NUM_NAMES", e.toString()));
- }
- nvp.put("numNames", String.valueOf(numNames));
-
- for (int i = 0; i < numNames; i++) {
- String nameType = null;
-
- try {
- nameType = config.getString("nameType" + i);
- } catch (EPropertyNotFound e) {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("CRL_CREATE_UNDEFINED_TYPE", Integer.toString(i), e.toString()));
- } catch (EBaseException e) {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_INVALID_TYPE", Integer.toString(i), e.toString()));
- }
-
- if (nameType != null && nameType.length() > 0) {
- nvp.put("nameType" + i, nameType);
- } else {
- nvp.put("nameType" + i, "");
- }
-
- String name = null;
-
- try {
- name = config.getString("name" + i);
- } catch (EPropertyNotFound e) {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("CRL_CREATE_UNDEFINED_TYPE", Integer.toString(i), e.toString()));
- } catch (EBaseException e) {
- log(ILogger.LL_FAILURE, CMS.getLogMessage("CRL_CREATE_INVALID_TYPE", Integer.toString(i), e.toString()));
- }
-
- if (name != null && name.length() > 0) {
- nvp.put("name" + i, name);
- } else {
- nvp.put("name" + i, "");
- }
- }
-
- if (numNames < 3) {
- for (int i = numNames; i < 3; i++) {
- nvp.put("nameType" + i, "");
- nvp.put("name" + i, "");
- }
- }
- }
-
- public String[] getExtendedPluginInfo(Locale locale) {
- String[] params = {
- //"type;choice(CRLExtension,CRLEntryExtension);CRL Entry Extension type."+
- //" This field is not editable.",
- "enable;boolean;Check to enable Certificate Issuer CRL entry extension.",
- "critical;boolean;Set criticality for Certificate Issuer CRL entry extension.",
- "numNames;number;Set number of certificate issuer names for the CRL entry.",
- "nameType0;choice(DirectoryName,URI);Select Certificate Issuer name type.",
- "name0;string;Enter Certificate Issuer name corresponding to the selected name type.",
- "nameType1;choice(DirectoryName,URI);Select Certificate Issuer name type.",
- "name1;string;Enter Certificate Issuer name corresponding to the selected name type.",
- "nameType2;choice(DirectoryName,URI);Select Certificate Issuer name type.",
- "name2;string;Enter Certificate Issuer name corresponding to the selected name type.",
- IExtendedPluginInfo.HELP_TOKEN +
- ";configuration-ca-edit-crlextension-certificateissuer",
- IExtendedPluginInfo.HELP_TEXT +
- ";This CRL entry extension identifies the certificate issuer" +
- " associated with an entry in an indirect CRL."
- };
-
- return params;
- }
-
- private void log(int level, String msg) {
- mLogger.log(ILogger.EV_SYSTEM, null, ILogger.S_CA, level, msg);
- }
-}