Principal
  public
  
  
  
  interface
  Principal
  
  
  
| java.security.Principal | 
This interface represents the abstract notion of a principal, which can be used to represent any entity, such as an individual, a corporation, and a login id.
See also:
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        boolean | 
      equals(Object another)
      Compares this principal to the specified object. | 
| 
        abstract
        
        
        
        
        String | 
      getName()
      Returns the name of this principal. | 
| 
        abstract
        
        
        
        
        int | 
      hashCode()
      Returns a hashcode for this principal. | 
| 
        
        default
        
        
        
        boolean | 
      implies(Subject subject)
      Returns true if the specified subject is implied by this principal. | 
| 
        abstract
        
        
        
        
        String | 
      toString()
      Returns a string representation of this principal. | 
Public methods
equals
public abstract boolean equals (Object another)
Compares this principal to the specified object. Returns true if the object passed in matches the principal represented by the implementation of this interface.
| Parameters | |
|---|---|
| another | Object: principal to compare with. | 
| Returns | |
|---|---|
| boolean | true if the principal passed in is the same as that encapsulated by this principal, and false otherwise. | 
getName
public abstract String getName ()
Returns the name of this principal.
| Returns | |
|---|---|
| String | the name of this principal. | 
hashCode
public abstract int hashCode ()
Returns a hashcode for this principal.
| Returns | |
|---|---|
| int | a hashcode for this principal. | 
implies
public boolean implies (Subject subject)
Returns true if the specified subject is implied by this principal.
Implementation Requirements:
- The default implementation of this method returns true if
 subjectis non-null and contains at least one principal that is equal to this principal.Subclasses may override this with a different implementation, if necessary. 
| Parameters | |
|---|---|
| subject | Subject: theSubject | 
| Returns | |
|---|---|
| boolean | true if subjectis non-null and is
              implied by this principal, or false otherwise. | 
toString
public abstract String toString ()
Returns a string representation of this principal.
| Returns | |
|---|---|
| String | a string representation of this principal. | 
