From 621d9e5c413e561293d7484b93882d985b3fe15f Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Sat, 24 Mar 2012 02:27:47 -0500 Subject: Removed unnecessary pki folder. Previously the source code was located inside a pki folder. This folder was created during svn migration and is no longer needed. This folder has now been removed and the contents have been moved up one level. Ticket #131 --- .../certsrv/extensions/EExtensionsException.java | 58 +++++++++++++++++ .../certsrv/extensions/ExtensionsResources.java | 34 ++++++++++ .../netscape/certsrv/extensions/ICMSExtension.java | 74 ++++++++++++++++++++++ 3 files changed, 166 insertions(+) create mode 100644 base/common/src/com/netscape/certsrv/extensions/EExtensionsException.java create mode 100644 base/common/src/com/netscape/certsrv/extensions/ExtensionsResources.java create mode 100644 base/common/src/com/netscape/certsrv/extensions/ICMSExtension.java (limited to 'base/common/src/com/netscape/certsrv/extensions') diff --git a/base/common/src/com/netscape/certsrv/extensions/EExtensionsException.java b/base/common/src/com/netscape/certsrv/extensions/EExtensionsException.java new file mode 100644 index 000000000..40fe80f99 --- /dev/null +++ b/base/common/src/com/netscape/certsrv/extensions/EExtensionsException.java @@ -0,0 +1,58 @@ +// --- 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.certsrv.extensions; + +import com.netscape.certsrv.base.EBaseException; + +/** + * This represents the extensions exception. + * + * @version $Revision$, $Date$ + */ +public class EExtensionsException extends EBaseException { + + /** + * + */ + private static final long serialVersionUID = 6442466262945583489L; + /** + * Resource class name. + */ + private static final String EXTENSIONS_RESOURCES = + ExtensionsResources.class.getName(); + + public EExtensionsException(String msgFormat) { + super(msgFormat); + } + + public EExtensionsException(String msgFormat, String param) { + super(msgFormat, param); + } + + public EExtensionsException(String msgFormat, Exception e) { + super(msgFormat, e); + } + + public EExtensionsException(String msgFormat, Object params[]) { + super(msgFormat, params); + } + + protected String getBundleName() { + return EXTENSIONS_RESOURCES; + } +} diff --git a/base/common/src/com/netscape/certsrv/extensions/ExtensionsResources.java b/base/common/src/com/netscape/certsrv/extensions/ExtensionsResources.java new file mode 100644 index 000000000..ca1e4545a --- /dev/null +++ b/base/common/src/com/netscape/certsrv/extensions/ExtensionsResources.java @@ -0,0 +1,34 @@ +// --- 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.certsrv.extensions; + +import java.util.ListResourceBundle; + +/** + * This represents the resources for extensions. + * + * @version $Revision$, $Date$ + */ +public class ExtensionsResources extends ListResourceBundle { + + public Object[][] getContents() { + return contents; + } + + static final Object[][] contents = {}; +} diff --git a/base/common/src/com/netscape/certsrv/extensions/ICMSExtension.java b/base/common/src/com/netscape/certsrv/extensions/ICMSExtension.java new file mode 100644 index 000000000..04086adcf --- /dev/null +++ b/base/common/src/com/netscape/certsrv/extensions/ICMSExtension.java @@ -0,0 +1,74 @@ +// --- 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.certsrv.extensions; + +import netscape.security.util.ObjectIdentifier; +import netscape.security.x509.Extension; + +import com.netscape.certsrv.base.EBaseException; +import com.netscape.certsrv.base.IArgBlock; +import com.netscape.certsrv.base.IConfigStore; +import com.netscape.certsrv.base.ISubsystem; + +/** + * CMS extension interface, for creating extensions from http input and + * displaying extensions to html forms. + * + * @version $Revision$, $Date$ + */ +public interface ICMSExtension { + public static String EXT_IS_CRITICAL = "isCritical"; + + public static String EXT_PREFIX = "ext_"; + + /** + * initialize from configuration file + */ + public void init(ISubsystem owner, IConfigStore config) + throws EBaseException; + + /** + * Get name of this extension. + * + * @return the name of this CMS extension, for + */ + public String getName(); + + /** + * Get object identifier associated with this extension. + */ + public ObjectIdentifier getOID(); + + /** + * Get an instance of the extension given http input. + * + * @return an instance of the extension. + */ + public Extension getExtension(IArgBlock argblock) + throws EBaseException; + + /** + * Get Javascript name value pairs to put into the request processing + * template. + * + * @return name value pairs + */ + public IArgBlock getFormParams(Extension extension) + throws EBaseException; + +} -- cgit