May 1998
Intermediate to advanced
469 pages
14h 57m
English
Interface java.security.Principal
A principal is anything that has a name, such as an identity. The name in this case is often an X.500 distinguished name, but that is not a requirement.
public abstract interface java.security.Principal {
// Instance Methods
public abstract boolean equals(Object);
public abstract String getName();
public abstract int hashCode();
public abstract String toString();
}
Identity