Package org.forgerock.opendj.server.core
Interface BindRequestContext
-
- All Superinterfaces:
AttachmentHolder,Operation,org.forgerock.opendj.ldap.RequestContext
public interface BindRequestContext extends Operation
The bind request context allows for updating the authentication state of the connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetAuthenticationInfo(org.forgerock.opendj.ldap.requests.BindRequest bindRequest, org.forgerock.opendj.ldap.Entry authenticationEntry, org.forgerock.opendj.ldap.Entry authorizationEntry)Specifies information about the authentication that has been performed for this connection.-
Methods inherited from interface org.forgerock.opendj.server.core.AttachmentHolder
getAttachment, getAttachmentNames, removeAttachment, setAttachment
-
Methods inherited from interface org.forgerock.opendj.server.core.Operation
getAuthenticationEntry, getAuthorizationEntry, getBindRequest, getConnection, getConnectionID, getLocalAddress, getLookthroughLimit, getOperationID, getPeerAddress, getProtocol, getSecurityStrengthFactor, getSizeLimit, getTimeLimit, hasAllPrivileges, hasPrivilege, setAuthorizationEntry
-
-
-
-
Method Detail
-
setAuthenticationInfo
void setAuthenticationInfo(org.forgerock.opendj.ldap.requests.BindRequest bindRequest, org.forgerock.opendj.ldap.Entry authenticationEntry, org.forgerock.opendj.ldap.Entry authorizationEntry)Specifies information about the authentication that has been performed for this connection.- Parameters:
bindRequest- The bind request the client used for authentication.authenticationEntry- The entry for the user as whom the client is authenticated, ornullif the client is unauthenticated.authorizationEntry- The entry for the user that should be considered the authorization identity for this client, ornullif it should be the unauthenticated user.
-
-