Package africa.absa.inception.security
Interface Credential
-
public interface CredentialThe 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequals(Object another)The equals method checks if the specified object is the same credential as this object.inthashCode()The hashCode method returns an integer hash code to represent this credential.StringtoString()Returns a string representation of this credential.
-
-
-
Method Detail
-
equals
boolean equals(Object another)
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.
-
-