Uses of Class
org.opends.server.types.AuthenticationInfo
-
Packages that use AuthenticationInfo Package Description org.forgerock.opendj.server.core Classes implementing core server APIs.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.authorization.dseecompat Contains the Directory Server Sun Java System Directory Server Enterprise Edition (dseecompat) compatability access control handler implementation.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.protocols.jmx Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using JMX.org.opends.server.types Contains implementations for a number of Directory Server data types. -
-
Uses of AuthenticationInfo in org.forgerock.opendj.server.core
Methods in org.forgerock.opendj.server.core that return AuthenticationInfo Modifier and Type Method Description AuthenticationInfo
ConnectionContext. getAuthenticationInfo()
Returns the authentication info to use for this connection context.Methods in org.forgerock.opendj.server.core with parameters of type AuthenticationInfo Modifier and Type Method Description void
ConnectionContext. setAuthenticationInfo(AuthenticationInfo authenticationInfo)
Sets the authentication info to use for this connection context. -
Uses of AuthenticationInfo in org.opends.server.api
Fields in org.opends.server.api declared as AuthenticationInfo Modifier and Type Field Description protected AuthenticationInfo
ClientConnection. authenticationInfo
The set of authentication information for this client connection.Methods in org.opends.server.api that return AuthenticationInfo Modifier and Type Method Description AuthenticationInfo
ClientConnection. getAuthenticationInfo()
Retrieves information about the authentication that has been performed for this connection.Methods in org.opends.server.api with parameters of type AuthenticationInfo Modifier and Type Method Description void
ClientConnection. setAuthenticationInfo(AuthenticationInfo authenticationInfo)
Specifies information about the authentication that has been performed for this connection. -
Uses of AuthenticationInfo in org.opends.server.authorization.dseecompat
Constructors in org.opends.server.authorization.dseecompat with parameters of type AuthenticationInfo Constructor Description AciLDAPOperationContainer(Operation operation, Entry e, AuthenticationInfo authInfo, int rights)
Constructor interface for evaluation general purpose Operation, entry and rights.. -
Uses of AuthenticationInfo in org.opends.server.core
Methods in org.opends.server.core that return AuthenticationInfo Modifier and Type Method Description AuthenticationInfo
BindOperation. getAuthenticationInfo()
Retrieves the authentication info that resulted from processing this bind operation.Methods in org.opends.server.core with parameters of type AuthenticationInfo Modifier and Type Method Description void
BindOperation. setAuthenticationInfo(AuthenticationInfo authInfo)
Specifies the authentication info that resulted from processing this bind operation. -
Uses of AuthenticationInfo in org.opends.server.protocols.jmx
Constructors in org.opends.server.protocols.jmx with parameters of type AuthenticationInfo Constructor Description JmxClientConnection(JmxConnectionHandler jmxConnectionHandler, AuthenticationInfo authInfo, ServerContext serverContext)
Creates a new Jmx client connection that will be authenticated as as the specified user. -
Uses of AuthenticationInfo in org.opends.server.types
Methods in org.opends.server.types that return AuthenticationInfo Modifier and Type Method Description static AuthenticationInfo
AuthenticationInfo. anonymous()
Creates a new set of authentication information to be used for unauthenticated clients.AuthenticationInfo
AuthenticationInfo. duplicate(Entry newAuthenticationEntry, Entry newAuthorizationEntry)
Creates a duplicate of thisAuthenticationInfo
object with the new authentication and authorization entries.static AuthenticationInfo
AuthenticationInfo. internal(Entry authenticationEntry)
Creates a new set of authentication information to be used for clients that are authenticated internally.static AuthenticationInfo
AuthenticationInfo. sasl(Entry authenticationEntry, String saslMechanism)
Creates a new set of authentication information to be used for clients that have authenticated using a SASL mechanism.static AuthenticationInfo
AuthenticationInfo. sasl(Entry authenticationEntry, Entry authorizationEntry, String saslMechanism)
Creates a new set of authentication information to be used for clients that have authenticated using a SASL mechanism.static AuthenticationInfo
AuthenticationInfo. simple(Entry authenticationEntry)
Creates a new set of authentication information to be used for clients that have successfully performed simple authentication.
-