Uses of Interface
org.forgerock.opendj.ldap.messages.Result
-
Packages that use Result Package Description org.forgerock.opendj.io Classes and interfaces providing I/O functionality.org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses.org.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF.org.forgerock.opendj.server.core Classes implementing core server APIs.org.opends.server.api.plugin Defines the Directory Server plugin API.org.opends.server.loggers Contains implementations of Directory Server access, error, and debug loggers.org.opends.server.protocols Contains various Directory Server connection handler implementations which will be used to accept connections from and perform communication with clients over various protocols.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 Result in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type Result Modifier and Type Method Description void
LdapWriter. writeAddResult(int messageID, Result result)
Writes the provided add result.void
LdapWriter. writeBindResult(int messageID, Result result)
Writes the provided bind result.void
LdapWriter. writeCompareResult(int messageID, Result result)
Writes the provided compare result.void
LdapWriter. writeDeleteResult(int messageID, Result result)
Writes the provided delete result.void
LdapWriter. writeExtendedResult(int messageID, Result result)
Writes the provided extended result.void
LdapWriter. writeModifyDnResult(int messageID, Result result)
Writes the provided modify DN result.void
LdapWriter. writeModifyResult(int messageID, Result result)
Writes the provided extended result.void
LdapWriter. writeSearchResult(int messageID, Result result)
Writes the provided search result. -
Uses of Result in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return Result Modifier and Type Method Description Result
AbstractAsynchronousConnection. add(AddRequest request)
Result
AbstractConnection. add(String... ldifLines)
Result
AbstractConnection. add(Entry entry)
Result
AbstractConnectionWrapper. add(String... ldifLines)
Adds an entry to the Directory Server using the provided lines of LDIF.Result
AbstractConnectionWrapper. add(Entry entry)
Adds the provided entry to the Directory Server.Result
AbstractConnectionWrapper. add(AddRequest request)
Adds an entry to the Directory Server using the provided add request.Result
Connection. add(String... ldifLines)
Adds an entry to the Directory Server using the provided lines of LDIF.Result
Connection. add(Entry entry)
Adds the provided entry to the Directory Server.Result
Connection. add(AddRequest request)
Adds an entry to the Directory Server using the provided add request.Result
AbstractConnection. applyChange(ChangeRecord request)
Result
AbstractConnectionWrapper. applyChange(ChangeRecord request)
Applies the provided change request to the Directory Server.Result
Connection. applyChange(ChangeRecord request)
Applies the provided change request to the Directory Server.Result
AbstractAsynchronousConnection. delete(DeleteRequest request)
Result
AbstractConnection. delete(String name)
Result
AbstractConnectionWrapper. delete(String name)
Deletes the named entry from the Directory Server.Result
AbstractConnectionWrapper. delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete request.Result
Connection. delete(String name)
Deletes the named entry from the Directory Server.default Result
Connection. delete(Dn name)
Deletes the named entry from the Directory Server.Result
Connection. delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete request.Result
AbstractConnection. deleteSubtree(String name)
Result
AbstractConnectionWrapper. deleteSubtree(String name)
Deletes the named entry and all of its subordinates from the Directory Server.Result
Connection. deleteSubtree(String name)
Deletes the named entry and all of its subordinates from the Directory Server.Result
LdapException. getResult()
Returns the error result which caused this exception to be thrown.Result
AbstractAsynchronousConnection. modify(ModifyRequest request)
Result
AbstractConnection. modify(String... ldifLines)
Result
AbstractConnectionWrapper. modify(String... ldifLines)
Modifies an entry in the Directory Server using the provided lines of LDIF.Result
AbstractConnectionWrapper. modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify request.Result
Connection. modify(String... ldifLines)
Modifies an entry in the Directory Server using the provided lines of LDIF.Result
Connection. modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify request.Result
AbstractAsynchronousConnection. modifyDn(ModifyDnRequest request)
Result
AbstractConnection. modifyDn(String name, String newRDN)
Result
AbstractConnectionWrapper. modifyDn(String name, String newRDN)
Renames the named entry in the Directory Server using the provided new RDN.Result
AbstractConnectionWrapper. modifyDn(ModifyDnRequest request)
Renames an entry in the Directory Server using the provided modify DN request.Result
Connection. modifyDn(String name, String newRDN)
Renames the named entry in the Directory Server using the provided new RDN.Result
Connection. modifyDn(ModifyDnRequest request)
Renames an entry in the Directory Server using the provided modify DN request.Result
AbstractAsynchronousConnection. search(SearchRequest request, SearchResultHandler handler)
Result
AbstractConnection. search(SearchRequest request, Collection<? super SearchResultEntry> entries)
Result
AbstractConnection. search(SearchRequest request, Collection<? super SearchResultEntry> entries, Collection<? super SearchResultReference> references)
Result
AbstractConnectionWrapper. search(SearchRequest request, Collection<? super SearchResultEntry> entries)
Searches the Directory Server using the provided search request.Result
AbstractConnectionWrapper. search(SearchRequest request, Collection<? super SearchResultEntry> entries, Collection<? super SearchResultReference> references)
Searches the Directory Server using the provided search request.Result
AbstractConnectionWrapper. search(SearchRequest request, SearchResultHandler handler)
Searches the Directory Server using the provided search request.Result
Connection. search(SearchRequest request, Collection<? super SearchResultEntry> entries)
Searches the Directory Server using the provided search request.Result
Connection. search(SearchRequest request, Collection<? super SearchResultEntry> entries, Collection<? super SearchResultReference> references)
Searches the Directory Server using the provided search request.Result
Connection. search(SearchRequest request, SearchResultHandler handler)
Searches the Directory Server using the provided search request.Methods in org.forgerock.opendj.ldap that return types with arguments of type Result Modifier and Type Method Description default Single<Result>
LdapClientSocket. add(AddRequest request)
Adds an entry to the Directory Server using the provided add request.LdapPromise<Result>
AbstractConnection. addAsync(AddRequest request)
LdapPromise<Result>
AbstractConnectionWrapper. addAsync(AddRequest request)
Asynchronously adds an entry to the Directory Server using the provided add request.LdapPromise<Result>
AbstractConnectionWrapper. addAsync(AddRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously adds an entry to the Directory Server using the provided add request.LdapPromise<Result>
AbstractSynchronousConnection. addAsync(AddRequest request, IntermediateResponseHandler intermediateResponseHandler)
LdapPromise<Result>
Connection. addAsync(AddRequest request)
Asynchronously adds an entry to the Directory Server using the provided add request.LdapPromise<Result>
Connection. addAsync(AddRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously adds an entry to the Directory Server using the provided add request.default Single<Result>
LdapClientSocket. applyChange(ChangeRecord request)
Applies the provided change request to the Directory Server.LdapPromise<Result>
AbstractConnection. applyChangeAsync(ChangeRecord request)
LdapPromise<Result>
AbstractConnection. applyChangeAsync(ChangeRecord request, IntermediateResponseHandler intermediateResponseHandler)
LdapPromise<Result>
AbstractConnectionWrapper. applyChangeAsync(ChangeRecord request)
Asynchronously applies the provided change request to the Directory Server.LdapPromise<Result>
AbstractConnectionWrapper. applyChangeAsync(ChangeRecord request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously applies the provided change request to the Directory Server.LdapPromise<Result>
Connection. applyChangeAsync(ChangeRecord request)
Asynchronously applies the provided change request to the Directory Server.LdapPromise<Result>
Connection. applyChangeAsync(ChangeRecord request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously applies the provided change request to the Directory Server.Single<Result>
RequestHandle. cancel()
Returns aSingle<Result>
which, once subscribed, will attempt to cancel the operation.default Single<Result>
LdapClientSocket. delete(DeleteRequest request)
Deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
AbstractConnection. deleteAsync(DeleteRequest request)
LdapPromise<Result>
AbstractConnectionWrapper. deleteAsync(DeleteRequest request)
Asynchronously deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
AbstractConnectionWrapper. deleteAsync(DeleteRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
AbstractSynchronousConnection. deleteAsync(DeleteRequest request, IntermediateResponseHandler intermediateResponseHandler)
LdapPromise<Result>
Connection. deleteAsync(DeleteRequest request)
Asynchronously deletes an entry from the Directory Server using the provided delete request.LdapPromise<Result>
Connection. deleteAsync(DeleteRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously deletes an entry from the Directory Server using the provided delete request.default Single<Result>
LdapClientSocket. modify(ModifyRequest request)
Modifies an entry in the Directory Server using the provided modify request.LdapPromise<Result>
AbstractConnection. modifyAsync(ModifyRequest request)
LdapPromise<Result>
AbstractConnectionWrapper. modifyAsync(ModifyRequest request)
Asynchronously modifies an entry in the Directory Server using the provided modify request.LdapPromise<Result>
AbstractConnectionWrapper. modifyAsync(ModifyRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously modifies an entry in the Directory Server using the provided modify request.LdapPromise<Result>
AbstractSynchronousConnection. modifyAsync(ModifyRequest request, IntermediateResponseHandler intermediateResponseHandler)
LdapPromise<Result>
Connection. modifyAsync(ModifyRequest request)
Asynchronously modifies an entry in the Directory Server using the provided modify request.LdapPromise<Result>
Connection. modifyAsync(ModifyRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously modifies an entry in the Directory Server using the provided modify request.default Single<Result>
LdapClientSocket. modifyDn(ModifyDnRequest request)
Renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>
AbstractConnection. modifyDnAsync(ModifyDnRequest request)
LdapPromise<Result>
AbstractConnectionWrapper. modifyDnAsync(ModifyDnRequest request)
Asynchronously renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>
AbstractConnectionWrapper. modifyDnAsync(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>
AbstractSynchronousConnection. modifyDnAsync(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler)
LdapPromise<Result>
Connection. modifyDnAsync(ModifyDnRequest request)
Asynchronously renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>
Connection. modifyDnAsync(ModifyDnRequest request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously renames an entry in the Directory Server using the provided modify DN request.LdapPromise<Result>
AbstractConnection. searchAsync(SearchRequest request, SearchResultHandler resultHandler)
LdapPromise<Result>
AbstractConnectionWrapper. searchAsync(SearchRequest request, IntermediateResponseHandler intermediateResponseHandler, SearchResultHandler entryHandler)
Asynchronously searches the Directory Server using the provided search request.LdapPromise<Result>
AbstractConnectionWrapper. searchAsync(SearchRequest request, SearchResultHandler resultHandler)
Asynchronously searches the Directory Server using the provided search request.LdapPromise<Result>
AbstractSynchronousConnection. searchAsync(SearchRequest request, IntermediateResponseHandler intermediateResponseHandler, SearchResultHandler entryHandler)
LdapPromise<Result>
Connection. searchAsync(SearchRequest request, IntermediateResponseHandler intermediateResponseHandler, SearchResultHandler entryHandler)
Asynchronously searches the Directory Server using the provided search request.LdapPromise<Result>
Connection. searchAsync(SearchRequest request, SearchResultHandler entryHandler)
Asynchronously searches the Directory Server using the provided search request.Methods in org.forgerock.opendj.ldap with parameters of type Result Modifier and Type Method Description static LdapException
LdapException. newLdapException(Result result)
Creates a new LDAP exception using the provided result.Constructors in org.forgerock.opendj.ldap with parameters of type Result Constructor Description LdapException(Result result)
Creates a new LDAP exception using the provided result. -
Uses of Result in org.forgerock.opendj.ldap.messages
Subinterfaces of Result in org.forgerock.opendj.ldap.messages Modifier and Type Interface Description interface
BindResult
A Bind result indicates the status of the client's request for authentication.interface
CompareResult
An Compare result indicates the final status of an Compare operation.interface
ExtendedResult
A Extended result indicates the status of an Extended operation and any additional information associated with the Extended operation, including the optional response name and value.interface
GenericExtendedResult
A Generic Extended result indicates the final status of an Generic Extended operation.interface
PasswordModifyExtendedResult
The password modify extended result as defined in RFC 3062.interface
StartTlsExtendedResult
The start tls extended result as defined in RFC 4511.interface
WhoAmIExtendedResult
The who am I extended result as defined in RFC 4532.Classes in org.forgerock.opendj.ldap.messages that implement Result Modifier and Type Class Description class
AbstractExtendedResult<S extends ExtendedResult>
An abstract Extended result which can be used as the basis for implementing new Extended operations.Methods in org.forgerock.opendj.ldap.messages that return Result Modifier and Type Method Description Result
Result. addControl(Control control)
Result
Result. addControls(Iterable<? extends Control> controls)
Result
Result. addReferralUri(String uri)
Adds the provided referral URI to this result.default Result
Result. copyFrom(Result result)
Copies the result code, cause, diagnostic message, matched DN and referral URIs from the provided result to this result.static Result
Responses. copyOfResult(Result result)
Creates a new result that is an exact copy of the provided result.static Result
Responses. newResult(ResultCode resultCode)
Creates a new result using the provided result code.Result
Result. setCause(Throwable cause)
Sets the throwable cause associated with this result if available.Result
Result. setDiagnosticMessage(CharSequence message)
Sets the diagnostic message associated with this result.Result
Result. setMatchedDn(String dn)
Sets the matched DN associated with this result.Result
Result. setMatchedDn(Dn dn)
Sets the matched DN associated with this result.Result
Result. setResultCode(ResultCode resultCode)
Sets the result code associated with this result.static Result
Responses. unmodifiableResult(Result result)
Creates an unmodifiable result using the provided response.Methods in org.forgerock.opendj.ldap.messages with parameters of type Result Modifier and Type Method Description default Result
Result. copyFrom(Result result)
Copies the result code, cause, diagnostic message, matched DN and referral URIs from the provided result to this result.static Result
Responses. copyOfResult(Result result)
Creates a new result that is an exact copy of the provided result.static LdapMessage
LdapMessage. newSearchResultDoneMessage(int messageId, Result result)
Builds and returns anLdapMessage
for a search result done operation type.static Result
Responses. unmodifiableResult(Result result)
Creates an unmodifiable result using the provided response. -
Uses of Result in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif that return Result Modifier and Type Method Description Result
ConnectionEntryReader. readResult()
Waits for the next search response to become available and returns it if it is a search result indicating that the search completed successfully. -
Uses of Result in org.forgerock.opendj.server.core
Methods in org.forgerock.opendj.server.core that return types with arguments of type Result Modifier and Type Method Description Single<Result>
ConnectionContext. cancelRequest(int msgId, boolean notifyClient, LocalizableMessage reason)
Returns aSingle
that, once it is subscribed, will attempt to cancel the specified request. -
Uses of Result in org.opends.server.api.plugin
Methods in org.opends.server.api.plugin that return Result Modifier and Type Method Description Result
PluginResult.IntermediateResponse. getResult()
Result
PluginResult.OperationResult. getResult()
The result for this plugin result.Result
PluginResult.PostOperation. getResult()
Result
PluginResult.PreOperation. getResult()
Result
PluginResult.PreParse. getResult()
Result
PluginResult.SubordinateDelete. getResult()
Result
PluginResult.SubordinateModifyDN. getResult()
-
Uses of Result in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type Result Modifier and Type Method Description static void
AccessLogger. logAbandonResult(RequestContext context, AbandonRequest request, Result result)
Writes a message to the access logger with information about the provided result.void
AccessLogPublisher. logAbandonResult(RequestContext context, AbandonRequest request, Result result)
Writes a message to the access logger with information about the provided result.void
TextAccessLogPublisher. logAbandonResult(RequestContext context, AbandonRequest request, Result result)
static void
AccessLogger. logAddResult(RequestContext context, AddRequest request, Result result)
Writes a message to the access logger with information about the provided result.void
AccessLogPublisher. logAddResult(RequestContext context, AddRequest request, Result result)
Writes a message to the access logger with information about the add result.void
TextAccessLogPublisher. logAddResult(RequestContext context, AddRequest request, Result result)
void
TextAuditLogPublisher. logAddResult(RequestContext context, AddRequest request, Result result)
static void
AccessLogger. logBindResult(RequestContext context, BindRequest request, Result result)
Writes a message to the access logger with information about the provided bind result.void
AccessLogPublisher. logBindResult(RequestContext context, BindRequest request, Result result)
Writes a message to the access logger with information about the bind result.void
TextAccessLogPublisher. logBindResult(RequestContext context, BindRequest request, Result result)
static void
AccessLogger. logCompareResult(RequestContext context, CompareRequest request, Result result)
Writes a message to the access logger with information about the provided compare result.void
AccessLogPublisher. logCompareResult(RequestContext context, CompareRequest request, Result result)
Writes a message to the access logger with information about the compare result.void
TextAccessLogPublisher. logCompareResult(RequestContext context, CompareRequest request, Result result)
static void
AccessLogger. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
Writes a message to the access logger with information about the provided delete result.void
AccessLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
Writes a message to the access logger with information about the delete result.void
TextAccessLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
void
TextAuditLogPublisher. logDeleteResult(RequestContext context, DeleteRequest request, Result result)
static void
AccessLogger. logExtendedResult(RequestContext context, ExtendedRequest<?> request, Result result)
Writes a message to the access logger with information about the provided extended result.void
AccessLogPublisher. logExtendedResult(RequestContext context, ExtendedRequest<?> request, Result result)
Writes a message to the access logger with information about the extended result.void
TextAccessLogPublisher. logExtendedResult(RequestContext context, ExtendedRequest<?> request, Result result)
static void
AccessLogger. logInvalidResult(RequestContext context, InvalidRequest request, Result result)
Writes a message to the access logger with information about the provided result.void
AccessLogPublisher. logInvalidResult(RequestContext context, InvalidRequest request, Result result)
Writes a message to the access logger with information about the result.void
TextAccessLogPublisher. logInvalidResult(RequestContext context, InvalidRequest request, Result result)
static void
AccessLogger. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
Writes a message to the access logger with information about the provided modifyDN result.void
AccessLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
Writes a message to the access logger with information about the modifyDN result.void
TextAccessLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
void
TextAuditLogPublisher. logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
static void
AccessLogger. logModifyResult(RequestContext context, ModifyRequest request, Result result)
Writes a message to the access logger with information about the provided modify result.void
AccessLogPublisher. logModifyResult(RequestContext context, ModifyRequest request, Result result)
Writes a message to the access logger with information about the modify result.void
TextAccessLogPublisher. logModifyResult(RequestContext context, ModifyRequest request, Result result)
void
TextAuditLogPublisher. logModifyResult(RequestContext context, ModifyRequest request, Result result)
static void
AccessLogger. logSearchResult(RequestContext context, SearchRequest request, Result result)
Writes a message to the access logger with information about the provided search result.void
AccessLogPublisher. logSearchResult(RequestContext context, SearchRequest request, Result result)
Writes a message to the access logger with information about the search result.void
TextAccessLogPublisher. logSearchResult(RequestContext context, SearchRequest request, Result result)
-
Uses of Result in org.opends.server.protocols
Methods in org.opends.server.protocols that return Result Modifier and Type Method Description static Result
ReactiveHandlersUtils. operationToResult(Operation operation, int ldapVersion, long connectionId, SslOptions sslOptions)
Generates a result from the provided operation.Methods in org.opends.server.protocols with parameters of type Result Modifier and Type Method Description static void
ReactiveHandlersUtils. emitResult(Result result, FlowableEmitter<Response> out)
Emits a result to the provided reactive emitter, to signal completion of a request.static void
ReactiveHandlersUtils. setResultDetails(Result result, Operation operation, LdapException e, int ldapVersion)
Set details on the provided result with data from an operation. -
Uses of Result in org.opends.server.protocols.jmx
Methods in org.opends.server.protocols.jmx that return Result Modifier and Type Method Description Result
JmxClientConnection. processSearch(SearchRequest request)
Processes an JMX search operation with the provided information. -
Uses of Result in org.opends.server.types
Methods in org.opends.server.types that return Result Modifier and Type Method Description Result
SynchronizationProviderResult.ContinueProcessing. getResult()
Result
SynchronizationProviderResult.StopProcessing. getResult()
Methods in org.opends.server.types with parameters of type Result Modifier and Type Method Description protected static LdapException
Operation. createLdapException(Operation operation, Entry entry, Dn entryDN, Result result, Result altResult)
Returns a newLdapException
built from the provided resultCodes and messages.void
Operation. setResult(Result result)
Specifies the result for this operation.protected static void
Operation. setResultCodeAndMessageNoInfoDisclosure(Operation operation, Entry entry, Dn entryDN, Result realResult, Result altResult)
Sets the provided resultCodes and messages on the provided operation.Constructors in org.opends.server.types with parameters of type Result Constructor Description StopProcessing(Result result)
Construct a new stop processing synchronization provider result.
-