Class AbstractAnonymousFactory
- java.lang.Object
-
- org.wildfly.security.sasl.util.AbstractSaslFactory
-
- org.wildfly.security.sasl.anonymous.AbstractAnonymousFactory
-
- Direct Known Subclasses:
AnonymousClientFactory,AnonymousServerFactory
public abstract class AbstractAnonymousFactory extends AbstractSaslFactory
A base class for the anonymous factories to verify from the properties supplied if anonymous can be used.- Author:
- Darran Lofthouse
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractAnonymousFactory()Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleanisDictionarySusceptible()Determine whether the mechanism is susceptible to dictionary (passive) attacks.protected booleanisPlainText()Determine whether the algorithm employs plain text.-
Methods inherited from class org.wildfly.security.sasl.util.AbstractSaslFactory
getMechanismNames, getPropertyValue, isActiveSusceptible, isAnonymous, isForwardSecrecy, isIncluded, isPassCredentials, matches
-
-
-
-
Method Detail
-
isDictionarySusceptible
protected boolean isDictionarySusceptible()
Description copied from class:AbstractSaslFactoryDetermine whether the mechanism is susceptible to dictionary (passive) attacks.- Overrides:
isDictionarySusceptiblein classAbstractSaslFactory- Returns:
trueif it is (default istrue)
-
isPlainText
protected boolean isPlainText()
Description copied from class:AbstractSaslFactoryDetermine whether the algorithm employs plain text.- Overrides:
isPlainTextin classAbstractSaslFactory- Returns:
trueif it does so (default istrue)
-
-