Package org.wildfly.security.sasl.util
Class PrivilegedSaslClientFactory
- java.lang.Object
-
- org.wildfly.security.sasl.util.AbstractDelegatingSaslClientFactory
-
- org.wildfly.security.sasl.util.PrivilegedSaslClientFactory
-
- All Implemented Interfaces:
SaslClientFactory
public final class PrivilegedSaslClientFactory extends AbstractDelegatingSaslClientFactory
ASaslClientFactory
whoseSaslClient
instances evaluate challenges and wrap/unwrap requests in a privileged context.- Author:
- David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description private AccessControlContext
context
-
Fields inherited from class org.wildfly.security.sasl.util.AbstractDelegatingSaslClientFactory
delegate
-
-
Constructor Summary
Constructors Constructor Description PrivilegedSaslClientFactory(SaslClientFactory delegate)
Construct a new instance.PrivilegedSaslClientFactory(SaslClientFactory delegate, AccessControlContext context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected int
calculateHashCode()
Perform the calculation of the hash code of this factory.SaslClient
createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
boolean
equals(Object other)
boolean
equals(AbstractDelegatingSaslClientFactory other)
boolean
equals(PrivilegedSaslClientFactory other)
-
Methods inherited from class org.wildfly.security.sasl.util.AbstractDelegatingSaslClientFactory
delegatesThrough, delegatesThroughNN, getMechanismNames, hashCode, toString
-
-
-
-
Field Detail
-
context
private final AccessControlContext context
-
-
Constructor Detail
-
PrivilegedSaslClientFactory
public PrivilegedSaslClientFactory(SaslClientFactory delegate)
Construct a new instance.- Parameters:
delegate
- the delegate SASL client factory
-
PrivilegedSaslClientFactory
PrivilegedSaslClientFactory(SaslClientFactory delegate, AccessControlContext context)
-
-
Method Detail
-
createSaslClient
public SaslClient createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh) throws SaslException
- Specified by:
createSaslClient
in interfaceSaslClientFactory
- Overrides:
createSaslClient
in classAbstractDelegatingSaslClientFactory
- Throws:
SaslException
-
equals
public boolean equals(Object other)
- Overrides:
equals
in classAbstractDelegatingSaslClientFactory
-
equals
public boolean equals(AbstractDelegatingSaslClientFactory other)
- Overrides:
equals
in classAbstractDelegatingSaslClientFactory
-
equals
public boolean equals(PrivilegedSaslClientFactory other)
-
calculateHashCode
protected int calculateHashCode()
Description copied from class:AbstractDelegatingSaslClientFactory
Perform the calculation of the hash code of this factory.- Overrides:
calculateHashCode
in classAbstractDelegatingSaslClientFactory
- Returns:
- the calculated hash code
-
-