summaryrefslogtreecommitdiffstats
path: root/pki/base/util/src/netscape/security/provider/SystemSigner.java
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-03-19 13:13:05 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-03-22 09:06:14 -0500
commite168d790c3e797e0dc0f94e3496636a52e935b4f (patch)
tree8e0105d95d6d65eeed61299fa59e3ae284b7aed3 /pki/base/util/src/netscape/security/provider/SystemSigner.java
parent7e6da86e37c4dc60ed537316f6bc0dee76a3d6dc (diff)
downloadpki-e168d790c3e797e0dc0f94e3496636a52e935b4f.tar.gz
pki-e168d790c3e797e0dc0f94e3496636a52e935b4f.tar.xz
pki-e168d790c3e797e0dc0f94e3496636a52e935b4f.zip
Removed unused SystemIdentity and SystemSigner.
The SystemIdentity and SystemSigner classes have been removed because they are based on deprecated classes and are not used anywhere in the code. Ticket #3
Diffstat (limited to 'pki/base/util/src/netscape/security/provider/SystemSigner.java')
-rw-r--r--pki/base/util/src/netscape/security/provider/SystemSigner.java91
1 files changed, 0 insertions, 91 deletions
diff --git a/pki/base/util/src/netscape/security/provider/SystemSigner.java b/pki/base/util/src/netscape/security/provider/SystemSigner.java
deleted file mode 100644
index cf9a78cc2..000000000
--- a/pki/base/util/src/netscape/security/provider/SystemSigner.java
+++ /dev/null
@@ -1,91 +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.provider;
-
-import java.security.Certificate;
-import java.security.IdentityScope;
-import java.security.InvalidParameterException;
-import java.security.KeyException;
-import java.security.KeyManagementException;
-import java.security.KeyPair;
-import java.security.PrivateKey;
-import java.security.Signer;
-
-/**
- * SunSecurity signer.
- *
- * @version 1.24, 09/12/97
- * @author Benjamin Renaud
- */
-public class SystemSigner extends Signer {
-
- /** use serialVersionUID from JDK 1.1. for interoperability */
- private static final long serialVersionUID = -2127743304301557711L;
-
- /* This exists only for serialization bc and don't use it! */
- private boolean trusted = false;
-
- /**
- * Construct a signer with a given name.
- */
- public SystemSigner(String name) {
- super(name);
- }
-
- /**
- * Construct a signer with a name and a scope.
- *
- * @param name the signer's name.
- *
- * @param scope the scope for this signer.
- */
- public SystemSigner(String name, IdentityScope scope)
- throws KeyManagementException {
-
- super(name, scope);
- }
-
- /* friendly callback for set keys */
- void setSignerKeyPair(KeyPair pair)
- throws InvalidParameterException, KeyException {
- setKeyPair(pair);
- }
-
- /* friendly callback for getting private keys */
- PrivateKey getSignerPrivateKey() {
- return getPrivateKey();
- }
-
- void setSignerInfo(String s) {
- setInfo(s);
- }
-
- /**
- * Call back method into a protected method for package friends.
- */
- void addSignerCertificate(Certificate cert) throws KeyManagementException {
- addCertificate(cert);
- }
-
- void clearCertificates() throws KeyManagementException {
- Certificate[] certs = certificates();
- for (int i = 0; i < certs.length; i++) {
- removeCertificate(certs[i]);
- }
- }
-}