May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class java.security.IdentityScope
An identity scope is a collection of identities; an identity may belong to a single identity scope. The notion is that scope is recursive: an identity scope may itself belong to another identity scope (or it may be unscoped). This class is deprecated in Java 1.2.
public abstract class java.security.IdentityScope
extends java.security.Identity {
// Constructors
protected IdentityScope();
public IdentityScope(String);
public IdentityScope(String, IdentityScope);
// Class Methods
public static IdentityScope getSystemScope();
protected static void setSystemScope(IdentityScope);
// Instance Methods
public abstract void addIdentity(Identity);
public abstract Identity getIdentity(String);
public Identity getIdentity(Principal);
public abstract Identity getIdentity(PublicKey);
public abstract Enumeration identities();
public abstract void removeIdentity(Identity);
public abstract int size();
public String toString();
}
Identity