Class SaslMechanismSelector
java.lang.Object
org.apache.qpid.protonj2.engine.sasl.client.SaslMechanismSelector
Client side mechanism used to select a matching mechanism from the server offered list of
 mechanisms.  The client configures the list of allowed 
Mechanism names and when the
 server mechanisms are offered mechanism is chosen from the allowed set.  If the client does
 not configure any mechanisms then the selector chooses from all supported Mechanism
 types.- 
Constructor SummaryConstructorsConstructorDescriptionSaslMechanismSelector(Collection<String> allowed) SaslMechanismSelector(Set<Symbol> allowed) 
- 
Method SummaryModifier and TypeMethodDescriptionprotected MechanismcreateMechanism(Symbol name, SaslCredentialsProvider credentials) protected booleanisApplicable(Mechanism candidate, SaslCredentialsProvider credentials) Tests a givenMechanisminstance to determine if it is applicable given the selector configuration and the provided credentials.select(Symbol[] serverMechs, SaslCredentialsProvider credentials) Given a list of SASL mechanism names select a match from the supported types using the configured allowed list and the given credentials.
- 
Constructor Details- 
SaslMechanismSelectorpublic SaslMechanismSelector()
- 
SaslMechanismSelector- Parameters:
- allowed- A- Collectionof SASL mechanism names that are allowed to be used when selecting a matching mechanism.
 
- 
SaslMechanismSelector- Parameters:
- allowed- A- Setof SASL mechanism names that are allowed to be used when selecting a matching mechanism.
 
 
- 
- 
Method Details- 
getAllowedMechanisms- Returns:
- the configured set of allowed SASL Mechanismnames.
 
- 
selectGiven a list of SASL mechanism names select a match from the supported types using the configured allowed list and the given credentials.- Parameters:
- serverMechs- The list of mechanisms the server indicates it supports.
- credentials- A- SaslCredentialsProviderused to choose an matching applicable SASL- Mechanism.
- Returns:
- a selected SASL Mechanisminstance or null of no match is possible.
 
- 
createMechanismUsing the givenMechanismname and the provided credentials create and configure aMechanismfor evaluation by the selector.- Parameters:
- name- A mechanism name that matches one of the supported offerings by the remote
- credentials- The provided credentials that will be used to perform authentication with the remote.
- Returns:
- a new Mechanisminstance or null the offered mechanism is unsupported.
 
- 
isApplicableTests a givenMechanisminstance to determine if it is applicable given the selector configuration and the provided credentials.- Parameters:
- candidate- The SASL mechanism that matches both the allowed and the server offered lists.
- credentials- The provided SASL credentials which will be used when authenticating with the remote.
- Returns:
- true if the candidate Mechanismis applicable given the provide credentials.
 
 
-