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 protected
AbstractAnonymousFactory()
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
isDictionarySusceptible()
Determine whether the mechanism is susceptible to dictionary (passive) attacks.protected boolean
isPlainText()
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:AbstractSaslFactory
Determine whether the mechanism is susceptible to dictionary (passive) attacks.- Overrides:
isDictionarySusceptible
in classAbstractSaslFactory
- Returns:
true
if it is (default istrue
)
-
isPlainText
protected boolean isPlainText()
Description copied from class:AbstractSaslFactory
Determine whether the algorithm employs plain text.- Overrides:
isPlainText
in classAbstractSaslFactory
- Returns:
true
if it does so (default istrue
)
-
-