Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public abstract class Signer extends Identity { // Public Constructors public Signer(String name); public Signer(String name, IdentityScope scope) throws KeyManagementException; // Protected Constructor protected Signer(); // Public Instance Methods public PrivateKey getPrivateKey(); public final void setKeyPair(KeyPair pair) throws InvalidParameterException, KeyException; public String toString(); // Overrides Identity.toString() }