org.jboss.sasl.anonymous
Class AbstractAnonymousFactory
java.lang.Object
org.jboss.sasl.util.AbstractSaslFactory
org.jboss.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
Field Summary |
static String |
ANONYMOUS
The name of the ANONYMOUS SASL mechanism. |
Method Summary |
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 java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ANONYMOUS
public static final String ANONYMOUS
- The name of the ANONYMOUS SASL mechanism.
- See Also:
- Constant Field Values
AbstractAnonymousFactory
protected AbstractAnonymousFactory()
- Construct a new instance.
isDictionarySusceptible
protected boolean isDictionarySusceptible()
- Description copied from class:
AbstractSaslFactory
- Determine whether the mechanism is susceptible to dictionary (passive) attacks.
- Overrides:
isDictionarySusceptible
in class AbstractSaslFactory
- Returns:
true
if it is (default is true
)
isPlainText
protected boolean isPlainText()
- Description copied from class:
AbstractSaslFactory
- Determine whether the algorithm employs plain text.
- Overrides:
isPlainText
in class AbstractSaslFactory
- Returns:
true
if it does so (default is true
)
Copyright © 2011 JBoss, a division of Red Hat, Inc.. All Rights Reserved.