Package org.wildfly.security.sasl.gssapi
Class AbstractGssapiFactory
- java.lang.Object
-
- org.wildfly.security.sasl.util.AbstractSaslFactory
-
- org.wildfly.security.sasl.gssapi.AbstractGssapiFactory
-
- Direct Known Subclasses:
GssapiClientFactory
,GssapiServerFactory
class AbstractGssapiFactory extends AbstractSaslFactory
Common factory for the GSSAPI mechanism.- Author:
- Darran Lofthouse
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractGssapiFactory()
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
isActiveSusceptible()
Determine whether the mechanism is susceptible to active attack.protected boolean
isAnonymous()
Determine whether the algorithm is anonymous.protected boolean
isPassCredentials()
Determine whether the mechanism passes client credentials.protected boolean
isPlainText()
Determine whether the algorithm employs plain text.-
Methods inherited from class org.wildfly.security.sasl.util.AbstractSaslFactory
getMechanismNames, getPropertyValue, isDictionarySusceptible, isForwardSecrecy, isIncluded, matches
-
-
-
-
Method Detail
-
isPassCredentials
protected boolean isPassCredentials()
Description copied from class:AbstractSaslFactory
Determine whether the mechanism passes client credentials.- Overrides:
isPassCredentials
in classAbstractSaslFactory
- Returns:
true
if it does (default isfalse
)
-
isActiveSusceptible
protected boolean isActiveSusceptible()
Description copied from class:AbstractSaslFactory
Determine whether the mechanism is susceptible to active attack.- Overrides:
isActiveSusceptible
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
)
-
isAnonymous
protected boolean isAnonymous()
Description copied from class:AbstractSaslFactory
Determine whether the algorithm is anonymous.- Overrides:
isAnonymous
in classAbstractSaslFactory
- Returns:
true
if it is (default istrue
)
-
-