Class CramMD5Mechanism
- java.lang.Object
-
- org.apache.qpid.protonj2.engine.sasl.client.AbstractMechanism
-
- org.apache.qpid.protonj2.engine.sasl.client.CramMD5Mechanism
-
- All Implemented Interfaces:
Mechanism
public class CramMD5Mechanism extends AbstractMechanism
Implements the SASL CRAM-MD5 authentication Mechanism.
-
-
Field Summary
Fields Modifier and Type Field Description static Symbol
CRAM_MD5
A singleton instance of the symbolic mechanism name.-
Fields inherited from class org.apache.qpid.protonj2.engine.sasl.client.AbstractMechanism
EMPTY
-
-
Constructor Summary
Constructors Constructor Description CramMD5Mechanism()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProtonBuffer
getChallengeResponse(SaslCredentialsProvider credentials, ProtonBuffer challenge)
Create a response based on a given challenge from the remote peer.ProtonBuffer
getInitialResponse(SaslCredentialsProvider credentials)
Create an initial response based on selected mechanism.Symbol
getName()
boolean
isApplicable(SaslCredentialsProvider credentials)
Allows the Mechanism to determine if it is a valid choice based on the configured credentials at the time of selection.void
verifyCompletion()
Verifies that the SASL exchange has completed successfully.-
Methods inherited from class org.apache.qpid.protonj2.engine.sasl.client.AbstractMechanism
isEnabledByDefault, toString
-
-
-
-
Field Detail
-
CRAM_MD5
public static final Symbol CRAM_MD5
A singleton instance of the symbolic mechanism name.
-
-
Method Detail
-
getName
public Symbol getName()
- Returns:
- the well known name of this SASL mechanism.
-
isApplicable
public boolean isApplicable(SaslCredentialsProvider credentials)
Description copied from interface:Mechanism
Allows the Mechanism to determine if it is a valid choice based on the configured credentials at the time of selection.- Parameters:
credentials
- the login credentials available at the time of mechanism selection.- Returns:
- true if the mechanism can be used with the provided credentials
-
getInitialResponse
public ProtonBuffer getInitialResponse(SaslCredentialsProvider credentials)
Description copied from interface:Mechanism
Create an initial response based on selected mechanism. May be null if there is no initial response.- Specified by:
getInitialResponse
in interfaceMechanism
- Overrides:
getInitialResponse
in classAbstractMechanism
- Parameters:
credentials
- The credentials that are supplied for this SASL negotiation.- Returns:
- the initial response, or null if there isn't one.
-
getChallengeResponse
public ProtonBuffer getChallengeResponse(SaslCredentialsProvider credentials, ProtonBuffer challenge) throws SaslException
Description copied from interface:Mechanism
Create a response based on a given challenge from the remote peer.- Specified by:
getChallengeResponse
in interfaceMechanism
- Overrides:
getChallengeResponse
in classAbstractMechanism
- Parameters:
credentials
- The credentials that are supplied for this SASL negotiation.challenge
- The challenge that this Mechanism should response to.- Returns:
- the response that answers the given challenge.
- Throws:
SaslException
- if an error occurs generating the challenge response.
-
verifyCompletion
public void verifyCompletion() throws SaslException
Description copied from interface:Mechanism
Verifies that the SASL exchange has completed successfully. This is an opportunity for the mechanism to ensure that all mandatory steps have been completed successfully and to cleanup and resources that are held by this Mechanism.- Specified by:
verifyCompletion
in interfaceMechanism
- Overrides:
verifyCompletion
in classAbstractMechanism
- Throws:
SaslException
- if the outcome of the SASL exchange is not valid for this Mechanism
-
-