Package africa.absa.inception.security
Interface Credential
public interface Credential
The Credential interface represents the abstract notion of a credential, which is a piece
of security information that can be used to confirm the identity of an entity, such as an
individual, a corporation, a login id, etc.
- Author:
- Marcus Portmann
-
Method Summary
-
Method Details
-
equals
The equals method checks if the specified object is the same credential as this object. -
hashCode
int hashCode()The hashCode method returns an integer hash code to represent this credential. It can be used to test for non-equality, or as an index key in a hash table. -
toString
String toString()Returns a string representation of this credential.
-