Package org.wildfly.security.auth.server
Interface MechanismInformation
public interface MechanismInformation
Information about the current mechanism being used for authentication.
- Author:
- Darran Lofthouse
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionGet the name of the host the current authentication attempt is for.Get the name of the current authentication mechanism.Get the type of the authentication mechanism.Get the protocol for the current authentication attempt.
-
Field Details
-
DEFAULT
-
-
Method Details
-
getMechanismType
String getMechanismType()Get the type of the authentication mechanism.- Returns:
- the type of the authentication mechanism.
-
getMechanismName
String getMechanismName()Get the name of the current authentication mechanism.- Returns:
- the name of the current authentication mechanism.
-
getHostName
String getHostName()Get the name of the host the current authentication attempt is for.- Returns:
- the name of the host the current authentication attempt is for.
-
getProtocol
String getProtocol()Get the protocol for the current authentication attempt.- Returns:
- the protocol for the current authentication attempt.
-