summaryrefslogtreecommitdiffstats
path: root/pki/base/util/src/netscape/security/extensions/CertificateRenewalWindowExtension.java
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-03-24 02:27:47 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-03-26 11:43:54 -0500
commit621d9e5c413e561293d7484b93882d985b3fe15f (patch)
tree638f3d75761c121d9a8fb50b52a12a6686c5ac5c /pki/base/util/src/netscape/security/extensions/CertificateRenewalWindowExtension.java
parent40d3643b8d91886bf210aa27f711731c81a11e49 (diff)
downloadpki-621d9e5c413e561293d7484b93882d985b3fe15f.tar.gz
pki-621d9e5c413e561293d7484b93882d985b3fe15f.tar.xz
pki-621d9e5c413e561293d7484b93882d985b3fe15f.zip
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
Diffstat (limited to 'pki/base/util/src/netscape/security/extensions/CertificateRenewalWindowExtension.java')
-rw-r--r--pki/base/util/src/netscape/security/extensions/CertificateRenewalWindowExtension.java190
1 files changed, 0 insertions, 190 deletions
diff --git a/pki/base/util/src/netscape/security/extensions/CertificateRenewalWindowExtension.java b/pki/base/util/src/netscape/security/extensions/CertificateRenewalWindowExtension.java
deleted file mode 100644
index 018fd71c8..000000000
--- a/pki/base/util/src/netscape/security/extensions/CertificateRenewalWindowExtension.java
+++ /dev/null
@@ -1,190 +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 netscape.security.extensions;
-
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.security.cert.CertificateException;
-import java.util.Date;
-import java.util.Enumeration;
-
-import netscape.security.util.DerOutputStream;
-import netscape.security.util.DerValue;
-import netscape.security.util.ObjectIdentifier;
-import netscape.security.x509.CertAttrSet;
-import netscape.security.x509.Extension;
-
-/**
- * This represents the CertificateRenewalWindow extension
- * as defined in draft-thayes-cert-renewal-00
- *
- * CertificateRenewalWindow ::= SEQUENCE {
- * beginTime GeneralizedTime,
- * endTime GeneralizedTime OPTIONAL }
- *
- * @author thomask
- * @version $Revision$, $Date$
- */
-public class CertificateRenewalWindowExtension extends Extension
- implements CertAttrSet {
- private static final long serialVersionUID = 4470220533545299271L;
- public static final String NAME = "CertificateRenewalWindow";
- public static final int OID[] = { 2, 16, 840, 1, 113730, 1, 15 };
- public static final ObjectIdentifier ID = new ObjectIdentifier(OID);
-
- private Date mBeginTime = null;
- private Date mEndTime = null; // optional
-
- public CertificateRenewalWindowExtension(boolean critical, Date beginTime,
- Date endTime) throws IOException {
- this.extensionId = ID;
- this.critical = critical;
- mBeginTime = beginTime;
- mEndTime = endTime;
- encodeThis();
- }
-
- public CertificateRenewalWindowExtension(boolean critical) {
- this.extensionId = ID;
- this.critical = critical;
- this.extensionValue = null; // build this when encodeThis() is called
- }
-
- public CertificateRenewalWindowExtension(Boolean critical, Object value)
- throws IOException {
- this.extensionId = ID;
- this.critical = critical.booleanValue();
- this.extensionValue = (byte[]) ((byte[]) value).clone();
- decodeThis();
- }
-
- public String getName() {
- return NAME;
- }
-
- /**
- * Sets extension attribute.
- */
- public void set(String name, Object obj) throws CertificateException {
- // NOT USED
- }
-
- /**
- * Retrieves extension attribute.
- */
- public Object get(String name) throws CertificateException {
- // NOT USED
- return null;
- }
-
- /**
- * Deletes attribute.
- */
- public void delete(String name) throws CertificateException {
- // NOT USED
- }
-
- /**
- * Decodes this extension.
- */
- public void decode(InputStream in) throws IOException {
- // NOT USED
- }
-
- /**
- * Return an enumeration of names of attributes existing within this
- * attribute.
- */
- public Enumeration<String> getAttributeNames() {
- // NOT USED
- return null;
- }
-
- public Date getBeginTime() {
- return mBeginTime;
- }
-
- public Date getEndTime() {
- return mEndTime;
- }
-
- public void setBeginTime(Date d) {
- mBeginTime = d;
- }
-
- public void setEndTime(Date d) {
- mEndTime = d;
- }
-
- private void decodeThis() throws IOException {
- DerValue val = new DerValue(this.extensionValue);
-
- if (val.tag != DerValue.tag_Sequence) {
- throw new IOException("Invalid encoding of CertificateWindow extension");
- }
- while (val.data.available() != 0) {
- if (mBeginTime == null) {
- mBeginTime = val.data.getGeneralizedTime();
- } else {
- mEndTime = val.data.getGeneralizedTime();
- }
- }
- }
-
- private void encodeThis() throws IOException {
- DerOutputStream seq = new DerOutputStream();
- DerOutputStream tmp = new DerOutputStream();
-
- tmp.putGeneralizedTime(mBeginTime);
- if (mEndTime != null) {
- tmp.putGeneralizedTime(mEndTime);
- }
- seq.write(DerValue.tag_Sequence, tmp);
- this.extensionValue = seq.toByteArray();
- }
-
- /**
- * Write the extension to the DerOutputStream.
- *
- * @param out the DerOutputStream to write the extension to.
- * @exception IOException on encoding errors.
- */
- public void encode(OutputStream out) throws IOException {
- DerOutputStream tmp = new DerOutputStream();
-
- if (this.extensionValue == null) {
- encodeThis();
- }
- super.encode(tmp);
- out.write(tmp.toByteArray());
- }
-
- /**
- * Returns a printable representation of the CertificateRenewalWindow.
- */
- public String toString() {
- String s = super.toString() + "CertificateRenewalWindow [\n";
-
- s += "BeginTime: " + mBeginTime + "\n";
- if (mEndTime != null) {
- s += "EndTime: " + mEndTime;
- }
- return (s + "]\n");
- }
-}