Class java.security.IdentityScope (1.1)


public abstract class IdentityScope extends Identity {
  // Public Constructors
    public IdentityScope(String name);
    public IdentityScope(String name, IdentityScope scope) throws KeyManagementException;
  // Protected Constructor
    protected IdentityScope( );
  // Class Methods
    public static IdentityScope getSystemScope( );
    protected static void setSystemScope(IdentityScope scope);
  // Public Instance Methods
    public abstract void addIdentity(Identity identity) throws KeyManagementException;
    public abstract Identity getIdentity(String name);
    public Identity getIdentity(Principal principal);
    public abstract Identity getIdentity(PublicKey key);
    public abstract Enumeration identities( );
    public abstract void removeIdentity(Identity identity) throws KeyManagementException;
    public abstract int size( );
    public String toString( );  // Overrides Identity.toString( )
}