Uses of Interface
org.forgerock.opendj.ldap.messages.AddRequest
-
Packages that use AddRequest 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.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.loggers Contains implementations of Directory Server access, error, and debug loggers.org.opends.server.replication.protocol This package contains the code used by the replication server and by the code running on the Directory Server side to exchange their information. -
-
Uses of AddRequest in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type AddRequest Modifier and Type Method Description voidLdapWriter. writeAddRequest(int messageID, AddRequest request)Writes the provided add request. -
Uses of AddRequest in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type AddRequest Modifier and Type Method Description ResultAbstractAsynchronousConnection. add(AddRequest request)ResultAbstractConnectionWrapper. add(AddRequest request)Adds an entry to the Directory Server using the provided add request.ResultConnection. add(AddRequest request)Adds an entry to the Directory Server using the provided add request.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. -
Uses of AddRequest in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return AddRequest Modifier and Type Method Description AddRequestAddRequest. addAttribute(String attributeDescription, Object... values)AddRequestAddRequest. addControl(Control control)AddRequestAddRequest. addControls(Iterable<? extends Control> controls)AddRequestAddRequest. clearAttributes()static AddRequestRequests. copyOfAddRequest(AddRequest request)Creates a new add request that is an exact copy of the provided request.static AddRequestRequests. newAddRequest(String name)Creates a new add request using the provided distinguished name decoded using the default schema.static AddRequestRequests. newAddRequest(String... ldifLines)Creates a new add request using the provided lines of LDIF decoded using the default schema.static AddRequestRequests. newAddRequest(Dn name)Creates a new add request using the provided distinguished name.static AddRequestRequests. newAddRequest(Entry entry)Creates a new add request backed by the provided entry.AddRequestAddRequest. removeAttribute(String attributeDescription, Object... values)AddRequestAddRequest. replaceAttribute(String attributeDescription, Object... values)AddRequestAddRequest. setName(String dn)AddRequestAddRequest. setName(Dn dn)static AddRequestRequests. unmodifiableAddRequest(AddRequest request)Creates an unmodifiable add request of the provided request.Methods in org.forgerock.opendj.ldap.messages with parameters of type AddRequest Modifier and Type Method Description static AddRequestRequests. copyOfAddRequest(AddRequest request)Creates a new add request that is an exact copy of the provided request.static AddRequestRequests. unmodifiableAddRequest(AddRequest request)Creates an unmodifiable add request of the provided request.RAbstractRequestVisitor. visitRequest(P p, AddRequest request)RRequestVisitor. visitRequest(P p, AddRequest request)Visits anAddrequest. -
Uses of AddRequest in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif with parameters of type AddRequest Modifier and Type Method Description EntryRejectedChangeRecordListener. handleDuplicateEntry(AddRequest change, Entry existingEntry)Invoked when an attempt was made to add an entry which already exists.voidRejectedChangeRecordListener. handleRejectedChangeRecord(AddRequest change, LocalizableMessage reason)Invoked when an attempt to add an entry was rejected.abstract RChangeRecordVisitor. visitRequest(P p, AddRequest request)ChangeRecordWriterChangeRecordWriter. writeChangeRecord(AddRequest change)Writes anAddchange record.ConnectionChangeRecordWriterConnectionChangeRecordWriter. writeChangeRecord(AddRequest change)Writes the provided Add request to the underlying connection, blocking until the request completes.LdifChangeRecordWriterLdifChangeRecordWriter. writeChangeRecord(AddRequest change) -
Uses of AddRequest in org.opends.server.core
Constructors in org.opends.server.core with parameters of type AddRequest Constructor Description AddOperation(org.forgerock.services.context.Context context, AddRequest request)Creates a new add operation with the provided information. -
Uses of AddRequest in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type AddRequest Modifier and Type Method Description static voidAccessLogger. logAddRequest(RequestContext context, AddRequest request)Writes a message to the access logger with information about the provided add request.voidAccessLogPublisher. logAddRequest(RequestContext context, AddRequest request)Writes a message to the access logger with information about the add request.voidTextAccessLogPublisher. logAddRequest(RequestContext context, AddRequest request)static voidAccessLogger. logAddResult(RequestContext context, AddRequest request, Result result)Writes a message to the access logger with information about the provided result.voidAccessLogPublisher. logAddResult(RequestContext context, AddRequest request, Result result)Writes a message to the access logger with information about the add result.voidTextAccessLogPublisher. logAddResult(RequestContext context, AddRequest request, Result result)voidTextAuditLogPublisher. logAddResult(RequestContext context, AddRequest request, Result result) -
Uses of AddRequest in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return AddRequest Modifier and Type Method Description AddRequestAddMsg. createRequest(Dn newDN)
-