Searched defs:next (Results 126 - 150 of 294) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/openidm-audit/src/main/java/org/forgerock/openidm/audit/filter/
H A DAuditFilter.java93 RequestHandler next) {
96 Promise<ActionResponse, ResourceException> promise = next.handleAction(context, request);
107 RequestHandler next) {
110 Promise<ResourceResponse, ResourceException> promise = next.handleCreate(context, request);
121 RequestHandler next) {
124 Promise<ResourceResponse, ResourceException> promise = next.handleDelete(context, request);
135 RequestHandler next) {
138 Promise<ResourceResponse, ResourceException> promise = next.handlePatch(context, request);
149 QueryResourceHandler handler, RequestHandler next) {
152 Promise<QueryResponse, ResourceException> promise = next
92 filterAction(Context context, ActionRequest request, RequestHandler next) argument
106 filterCreate(Context context, CreateRequest request, RequestHandler next) argument
120 filterDelete(Context context, DeleteRequest request, RequestHandler next) argument
134 filterPatch(Context context, PatchRequest request, RequestHandler next) argument
148 filterQuery(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) argument
162 filterRead(Context context, ReadRequest request, RequestHandler next) argument
176 filterUpdate(Context context, UpdateRequest request, RequestHandler next) argument
[all...]
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DRealmContextFilter.java84 public Promise<Response, NeverThrowsException> filter(Context context, Request request, Handler next) { argument
86 return next.handle(evaluate(context, request), request);
96 RequestHandler next) {
103 return next.handleAction(evaluate(context, request), evaluatedRequest);
111 RequestHandler next) {
118 return next.handleCreate(evaluate(context, request), evaluatedRequest);
126 RequestHandler next) {
133 return next.handleDelete(evaluate(context, request), evaluatedRequest);
141 RequestHandler next) {
148 return next
95 filterAction(Context context, ActionRequest request, RequestHandler next) argument
110 filterCreate(Context context, CreateRequest request, RequestHandler next) argument
125 filterDelete(Context context, DeleteRequest request, RequestHandler next) argument
140 filterPatch(Context context, PatchRequest request, RequestHandler next) argument
155 filterQuery(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) argument
170 filterRead(Context context, ReadRequest request, RequestHandler next) argument
185 filterUpdate(Context context, UpdateRequest request, RequestHandler next) argument
[all...]
H A DRealmRoutingFactory.java83 * @param next The next {@code Handler} that the realm handler should route to after parsing
87 public Handler createRouter(Handler next) { argument
88 return new ChfRealmRouter(next);
97 * @param next The next {@code RequestHandler} that the realm handler should route to after
101 public RequestHandler createRouter(RequestHandler next) { argument
102 return new CrestRealmRouter(next);
111 * @param next The next {
115 createRouter(org.restlet.routing.Router next) argument
137 ChfRealmRouter(Handler next) argument
160 CrestRealmRouter(RequestHandler next) argument
233 RestletRealmRouter(org.restlet.routing.Router next) argument
239 doHandle(Restlet next, org.restlet.Request request, org.restlet.Response response) argument
[all...]
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/fluent/
H A DAuditFilter.java80 * @param next {@inheritDoc}
84 RequestHandler next) {
89 return auditResponse(next.handleAction(context, request), auditor, request);
101 * @param next {@inheritDoc}
105 RequestHandler next) {
110 return auditResponse(next.handleCreate(context, request), auditor, request);
122 * @param next {@inheritDoc}
126 RequestHandler next) {
131 return auditResponse(next.handleDelete(context, request), auditor, request);
143 * @param next {
83 filterAction(Context context, ActionRequest request, RequestHandler next) argument
104 filterCreate(Context context, CreateRequest request, RequestHandler next) argument
125 filterDelete(Context context, DeleteRequest request, RequestHandler next) argument
146 filterPatch(Context context, PatchRequest request, RequestHandler next) argument
168 filterQuery(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) argument
189 filterRead(Context context, ReadRequest request, RequestHandler next) argument
210 filterUpdate(Context context, UpdateRequest request, RequestHandler next) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DHeadTaskRunnable.java60 * @param nextTask The TaskRunnable next to this TaskRunnable
240 * Sets the TaskRunnable next to this TaskRunnable in the linked-list.
242 * @param task The next TaskRunnable
267 * Returns the TaskRunnable next to this TaskRunnable in the linked-list.
269 * @return next TaskRunnable object or null if it is not set
272 public TaskRunnable next() { method in class:HeadTaskRunnable
367 * Implements for TaskRunnable interface, just run the next TaskRunnable.
371 TaskRunnable taskToRun = next();
374 } while ((taskToRun = taskToRun.next()) != null);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/ldap/
H A DLdapQueryBuilder.java283 public Collection<T> next() { method in class:LdapQueryBuilder.EntryIterator
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DAuthenticationChainsFilter.java62 RequestHandler next) {
63 return next.handleAction(context, request);
68 RequestHandler next) {
70 return wrap(next.handleCreate(context, transformRequest(request)));
78 RequestHandler next) {
79 return wrap(next.handleDelete(context, request));
84 RequestHandler next) {
91 QueryResourceHandler handler, RequestHandler next) {
92 return next.handleQuery(context, request, wrap(handler));
97 RequestHandler next) {
61 filterAction(Context context, ActionRequest request, RequestHandler next) argument
67 filterCreate(Context context, CreateRequest request, RequestHandler next) argument
77 filterDelete(Context context, DeleteRequest request, RequestHandler next) argument
83 filterPatch(Context context, PatchRequest request, RequestHandler next) argument
90 filterQuery(Context context, QueryRequest request, QueryResourceHandler handler, RequestHandler next) argument
96 filterRead(Context context, ReadRequest request, RequestHandler next) argument
102 filterUpdate(Context context, UpdateRequest request, RequestHandler next) argument
[all...]
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DApplicationV1Filter.java115 * @param next
120 final CreateRequest request, final RequestHandler next) {
145 // Forward onto next handler.
146 return applicationTransformer.transform(next.handleCreate(context, request), context);
190 return resourceTypes.iterator().next();
244 * @param next
249 final UpdateRequest request, final RequestHandler next) {
287 final String resourceTypeUuid = application.getResourceTypeUuids().iterator().next();
320 // Forward onto next handler.
321 return applicationTransformer.transform(next
119 filterCreate(final Context context, final CreateRequest request, final RequestHandler next) argument
248 filterUpdate(final Context context, final UpdateRequest request, final RequestHandler next) argument
336 filterDelete(Context context, DeleteRequest request, RequestHandler next) argument
357 filterQuery(final Context context, final QueryRequest request, final QueryResourceHandler handler, final RequestHandler next) argument
382 filterRead(final Context context, final ReadRequest request, final RequestHandler next) argument
393 filterPatch(Context context, PatchRequest request, RequestHandler next) argument
403 filterAction(Context context, ActionRequest request, RequestHandler next) argument
[all...]
H A DPolicyV1Filter.java85 * @param next
90 RequestHandler next) {
91 // Forward onto next handler.
92 return next.handleAction(context, request)
111 * @param next
116 RequestHandler next) {
132 return transform(next.handleCreate(context, request));
143 * @param next
148 RequestHandler next) {
164 return transform(next
89 filterAction(Context context, ActionRequest request, RequestHandler next) argument
115 filterCreate(Context context, CreateRequest request, RequestHandler next) argument
147 filterUpdate(Context context, UpdateRequest request, RequestHandler next) argument
219 filterDelete(Context context, DeleteRequest request, RequestHandler next) argument
238 filterQuery(final Context context, final QueryRequest request, final QueryResourceHandler handler, final RequestHandler next) argument
261 filterRead(Context context, ReadRequest request, RequestHandler next) argument
272 filterPatch(Context context, PatchRequest request, RequestHandler next) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DDraftCNDB.java664 * Go to the next record on the cursor.
665 * @return the next record on this cursor.
668 public boolean next() throws DatabaseException method in class:DraftCNDB.DraftCNDBCursor
H A DReplicationDB.java96 // the next change with a ts different from tsForNewCounterRecord will lead
197 // enough changes to generate a counter record - wait for the next
351 // First record is a counter record .. go next
432 // There can't be 2 counter record next to each other
505 // There can't be 2 counter record next to each other
535 // There can't be 2 counter record next to each other
769 * Get the next ChangeNumber in the database from this Cursor.
771 * @return The next ChangeNumber in the database from this cursor.
792 * Get the next UpdateMsg from this cursor.
794 * @return the next UpdateMs
796 public UpdateMsg next() method in class:ReplicationDB.ReplServerDBCursor
[all...]
/forgerock/opendj2/src/server/org/opends/server/api/
H A DDITCacheMap.java105 Node<T> next; field in class:DITCacheMap.Node
245 node.next = null;
266 newParentNode.next = null;
277 while (lastNode.next != null)
279 lastNode = lastNode.next;
282 lastNode.next = node;
340 final Node<T> nextNode = node.next;
350 previousNode.next = nextNode;
387 node.next = null;
450 final Node<T> next
550 public Entry<DN, T> next() method in class:DITCacheMap.DITCacheEntrySet.EntryIterator
777 public T next() method in class:DITCacheMap.DITSubtreeSet.SubtreeSetIterator
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DDITCacheMap.java106 Node<T> next; field in class:DITCacheMap.Node
246 node.next = null;
267 newParentNode.next = null;
278 while (lastNode.next != null)
280 lastNode = lastNode.next;
283 lastNode.next = node;
341 final Node<T> nextNode = node.next;
351 previousNode.next = nextNode;
388 node.next = null;
451 final Node<T> next
551 public Entry<DN, T> next() method in class:DITCacheMap.DITCacheEntrySet.EntryIterator
778 public T next() method in class:DITCacheMap.DITSubtreeSet.SubtreeSetIterator
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/server/changelog/file/
H A DLogFile.java275 cursor.next();
356 return cursor.next() ? cursor.getRecord() : null;
379 while (cursor.next())
406 while (cursor.next())
555 public boolean next() throws ChangelogException method in class:LogFile.LogFileCursor
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DDITCacheMap.java106 Node<T> next; field in class:DITCacheMap.Node
246 node.next = null;
267 newParentNode.next = null;
278 while (lastNode.next != null)
280 lastNode = lastNode.next;
283 lastNode.next = node;
341 final Node<T> nextNode = node.next;
351 previousNode.next = nextNode;
388 node.next = null;
451 final Node<T> next
551 public Entry<DN, T> next() method in class:DITCacheMap.DITCacheEntrySet.EntryIterator
778 public T next() method in class:DITCacheMap.DITSubtreeSet.SubtreeSetIterator
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DDraftCNDB.java664 * Go to the next record on the cursor.
665 * @return the next record on this cursor.
668 public boolean next() throws DatabaseException method in class:DraftCNDB.DraftCNDBCursor
H A DReplicationDB.java96 // the next change with a ts different from tsForNewCounterRecord will lead
197 // enough changes to generate a counter record - wait for the next
351 // First record is a counter record .. go next
432 // There can't be 2 counter record next to each other
505 // There can't be 2 counter record next to each other
535 // There can't be 2 counter record next to each other
769 * Get the next ChangeNumber in the database from this Cursor.
771 * @return The next ChangeNumber in the database from this cursor.
792 * Get the next UpdateMsg from this cursor.
794 * @return the next UpdateMs
796 public UpdateMsg next() method in class:ReplicationDB.ReplServerDBCursor
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/server/
H A DDraftCNDB.java664 * Go to the next record on the cursor.
665 * @return the next record on this cursor.
668 public boolean next() throws DatabaseException method in class:DraftCNDB.DraftCNDBCursor
H A DReplicationDB.java96 // the next change with a ts different from tsForNewCounterRecord will lead
197 // enough changes to generate a counter record - wait for the next
351 // First record is a counter record .. go next
432 // There can't be 2 counter record next to each other
505 // There can't be 2 counter record next to each other
535 // There can't be 2 counter record next to each other
769 * Get the next ChangeNumber in the database from this Cursor.
771 * @return The next ChangeNumber in the database from this cursor.
792 * Get the next UpdateMsg from this cursor.
794 * @return the next UpdateMs
796 public UpdateMsg next() method in class:ReplicationDB.ReplServerDBCursor
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DDITCacheMap.java105 Node<T> next; field in class:DITCacheMap.Node
245 node.next = null;
266 newParentNode.next = null;
277 while (lastNode.next != null)
279 lastNode = lastNode.next;
282 lastNode.next = node;
340 final Node<T> nextNode = node.next;
350 previousNode.next = nextNode;
387 node.next = null;
450 final Node<T> next
550 public Entry<DN, T> next() method in class:DITCacheMap.DITCacheEntrySet.EntryIterator
777 public T next() method in class:DITCacheMap.DITSubtreeSet.SubtreeSetIterator
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/changelog/file/
H A DLogFile.java275 cursor.next();
356 return cursor.next() ? cursor.getRecord() : null;
379 while (cursor.next())
406 while (cursor.next())
555 public boolean next() throws ChangelogException method in class:LogFile.LogFileCursor
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DDITCacheMap.java106 Node<T> next; field in class:DITCacheMap.Node
246 node.next = null;
267 newParentNode.next = null;
278 while (lastNode.next != null)
280 lastNode = lastNode.next;
283 lastNode.next = node;
341 final Node<T> nextNode = node.next;
351 previousNode.next = nextNode;
388 node.next = null;
451 final Node<T> next
551 public Entry<DN, T> next() method in class:DITCacheMap.DITCacheEntrySet.EntryIterator
778 public T next() method in class:DITCacheMap.DITSubtreeSet.SubtreeSetIterator
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DSearchResults.java201 * Returns the next entry in the search results.
207 public PersistentObject next() throws UMSException { method in class:SearchResults
267 entry = next();
357 testResults.next();
509 * public Object next() { PersistentObject po = null; try { po =
510 * SearchResults.this.next(); } catch ( Exception ignored) { } return po; }
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DDITCacheMap.java101 Node<T> next; field in class:DITCacheMap.Node
213 node.next = null;
234 newParentNode.next = null;
245 while (lastNode.next != null)
247 lastNode = lastNode.next;
250 lastNode.next = node;
306 final Node<T> nextNode = node.next;
316 previousNode.next = nextNode;
352 node.next = null;
410 final Node<T> next
497 public Entry<DN, T> next() method in class:DITCacheMap.DITCacheEntrySet.EntryIterator
702 public T next() method in class:DITCacheMap.DITSubtreeSet.SubtreeSetIterator
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/file/
H A DLogFile.java284 cursor.next();
365 return cursor.next() ? cursor.getRecord() : null;
413 while (cursor.next())
581 public boolean next() throws ChangelogException method in class:LogFile.LogFileCursor

Completed in 66 milliseconds

1234567891011>>