Searched defs:handler (Results 1 - 25 of 479) sorted by relevance

1234567891011>>

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/
H A DCommonAuditLogPublisher.java37 * Sets the handler to use for publishing audit events.
39 * @param handler
40 * The common audit handler accepting requests.
42 void setRequestHandler(RequestHandler handler); argument
/forgerock/opendj-b2.6/src/server/org/opends/server/monitors/
H A DClientConnectionMonitorProvider.java60 // The connection handler associated with this monitor, or null if all
62 private final ConnectionHandler<?> handler; field in class:ClientConnectionMonitorProvider
72 this.handler = null;
80 * @param handler
83 public ClientConnectionMonitorProvider(ConnectionHandler handler) argument
85 this.handler = handler;
113 if (handler == null)
119 // Client connections of a connection handler
121 + handler
[all...]
/forgerock/opendj2/src/server/org/opends/server/monitors/
H A DClientConnectionMonitorProvider.java59 // The connection handler associated with this monitor, or null if all
61 private final ConnectionHandler<?> handler; field in class:ClientConnectionMonitorProvider
71 this.handler = null;
79 * @param handler
82 public ClientConnectionMonitorProvider(ConnectionHandler handler) argument
84 this.handler = handler;
112 if (handler == null)
118 // Client connections of a connection handler
120 + handler
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/monitors/
H A DClientConnectionMonitorProvider.java60 // The connection handler associated with this monitor, or null if all
62 private final ConnectionHandler<?> handler; field in class:ClientConnectionMonitorProvider
72 this.handler = null;
80 * @param handler
83 public ClientConnectionMonitorProvider(ConnectionHandler handler) argument
85 this.handler = handler;
113 if (handler == null)
119 // Client connections of a connection handler
121 + handler
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/monitors/
H A DClientConnectionMonitorProvider.java60 // The connection handler associated with this monitor, or null if all
62 private final ConnectionHandler<?> handler; field in class:ClientConnectionMonitorProvider
72 this.handler = null;
80 * @param handler
83 public ClientConnectionMonitorProvider(ConnectionHandler handler) argument
85 this.handler = handler;
113 if (handler == null)
119 // Client connections of a connection handler
121 + handler
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/monitors/
H A DClientConnectionMonitorProvider.java59 // The connection handler associated with this monitor, or null if all
61 private final ConnectionHandler<?> handler; field in class:ClientConnectionMonitorProvider
71 this.handler = null;
79 * @param handler
82 public ClientConnectionMonitorProvider(ConnectionHandler handler) argument
84 this.handler = handler;
112 if (handler == null)
118 // Client connections of a connection handler
120 + handler
[all...]
/forgerock/openam-v13/openam-rest/src/test/java/org/forgerock/openam/forgerockrest/utils/
H A DXMLResourceExceptionHandlerTest.java37 private XMLResourceExceptionHandler handler = new XMLResourceExceptionHandler(); field in class:XMLResourceExceptionHandlerTest
53 handler.write(context, ex2);
71 String text = XMLUtils.print(handler.asXMLDOM(ex.toJsonValue().asMap()).getDocumentElement());
/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/
H A DHandlerProvider.java38 private volatile Handler handler; field in class:HandlerProvider
47 if (handler == null) {
48 handler = InjectorHolder.getInstance(key);
50 return handler.handle(context, request);
H A DOpenAMHttpApplication.java37 private final Handler handler; field in class:OpenAMHttpApplication
40 OpenAMHttpApplication(@Named("HttpHandler") Handler handler) { argument
41 this.handler = handler;
46 return handler;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/errors/
H A DIdentityServicesExceptionMappingHandlerTest.java29 private IdentityServicesExceptionMappingHandler handler = new IdentityServicesExceptionMappingHandler(); field in class:IdentityServicesExceptionMappingHandlerTest
39 IdServicesException exp = handler.handleError(mockException);
53 IdServicesException exp = handler.handleError(mockException);
66 IdServicesException exp = handler.handleError(mockException);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/monitors/
H A DClientConnectionMonitorProvider.java54 * The connection handler associated with this monitor, or null if all
57 private final ConnectionHandler<?> handler; field in class:ClientConnectionMonitorProvider
67 this.handler = null;
75 * @param handler
78 public ClientConnectionMonitorProvider(ConnectionHandler handler) argument
80 this.handler = handler;
106 if (handler == null)
112 // Client connections of a connection handler
114 + handler
[all...]
/forgerock/opendj-v3/opendj-server/src/main/java/org/forgerock/opendj/server/core/
H A DExportableDataProvider.java49 * @param handler
50 * A handler which will be notified when the export completes.
53 LdapPromise<Void> exportEntries(EntryWriter writer, LdapResultHandler<Void> handler); argument
H A DImportableDataProvider.java64 * @param handler
65 * A handler which will be notified when the import completes.
68 LdapPromise<Void> importEntries(EntryReader reader, LdapResultHandler<Void> handler); argument
/forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/forgerockrest/utils/
H A DXMLResourceExceptionHandlerTest.java37 private XMLResourceExceptionHandler handler = new XMLResourceExceptionHandler(); field in class:XMLResourceExceptionHandlerTest
53 handler.write(context, ex2);
71 String text = XMLUtils.print(handler.asXMLDOM(ex.toJsonValue().asMap()).getDocumentElement());
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/errors/
H A DIdentityServicesExceptionMappingHandlerTest.java29 private IdentityServicesExceptionMappingHandler handler = new IdentityServicesExceptionMappingHandler(); field in class:IdentityServicesExceptionMappingHandlerTest
39 IdServicesException exp = handler.handleError(mockException);
53 IdServicesException exp = handler.handleError(mockException);
66 IdServicesException exp = handler.handleError(mockException);
/forgerock/openam/openam-test-utils/src/main/java/org/forgerock/openam/test/apidescriptor/
H A DApiProviderAssert.java51 public ApiHandlerAssert handler() { method in class:ApiProviderAssert
52 Handler handler = null;
54 handler = ((SingletonProvider) actual).value();
56 handler = ((CollectionProvider) actual).details();
58 handler = ((RequestHandler) actual).value();
60 if (handler == null) {
63 return new ApiHandlerAssert(annotatedClass, handler);
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DExternalChangeLogSessionImpl.java44 ECLServerHandler handler; field in class:ExternalChangeLogSessionImpl
59 this.handler = new ECLServerHandler(
75 return handler.getNextECLUpdate();
85 // The handler is like orphan so no way to use the regular
86 // handler.getDomain().stopServer(handler, ....)
87 // instead call directly handler.
88 handler.shutdown();
H A DServerReader.java62 private final ServerHandler handler; field in class:ServerReader
72 * @param handler
73 * The server handler for this server reader.
75 public ServerReader(Session session, ServerHandler handler) argument
77 super("Replication server RS(" + handler.getReplicationServerId()
78 + ") reading from " + handler.toString() + " at "
81 this.handler = handler;
114 handler.checkWindow();
115 handler
[all...]
H A DServerWriter.java59 private final ServerHandler handler; field in class:ServerWriter
70 * @param handler
71 * handler for which the ServerWriter is created.
75 public ServerWriter(Session session, ServerHandler handler, argument
80 + handler.getReplicationServerId()
82 + handler.toString()
88 this.handler = handler;
108 UpdateMsg update = replicationServerDomain.take(this.handler);
117 if (handler
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/server/
H A DServerReader.java61 private final ServerHandler handler; field in class:ServerReader
68 * @param handler
69 * The server handler for this server reader.
71 public ServerReader(Session session, ServerHandler handler) argument
73 super("Replication server RS(" + handler.getReplicationServerId()
74 + ") reading from " + handler + " at "
77 this.handler = handler;
111 handler.checkWindow();
112 handler
[all...]
H A DServerWriter.java58 private final ServerHandler handler; field in class:ServerWriter
68 * @param handler
69 * handler for which the ServerWriter is created.
74 public ServerWriter(Session session, ServerHandler handler, argument
79 super("Replication server RS(" + handler.getReplicationServerId()
80 + ") writing to " + handler + " at "
84 this.handler = handler;
109 final UpdateMsg updateMsg = replicationServerDomain.take(this.handler);
134 errMessage = handler
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DExternalChangeLogSessionImpl.java44 ECLServerHandler handler; field in class:ExternalChangeLogSessionImpl
59 this.handler = new ECLServerHandler(
75 return handler.getNextECLUpdate();
85 // The handler is like orphan so no way to use the regular
86 // handler.getDomain().stopServer(handler, ....)
87 // instead call directly handler.
88 handler.shutdown();
H A DServerReader.java62 private final ServerHandler handler; field in class:ServerReader
72 * @param handler
73 * The server handler for this server reader.
75 public ServerReader(Session session, ServerHandler handler) argument
77 super("Replication server RS(" + handler.getReplicationServerId()
78 + ") reading from " + handler.toString() + " at "
81 this.handler = handler;
114 handler.checkWindow();
115 handler
[all...]
H A DServerWriter.java59 private final ServerHandler handler; field in class:ServerWriter
70 * @param handler
71 * handler for which the ServerWriter is created.
75 public ServerWriter(Session session, ServerHandler handler, argument
80 + handler.getReplicationServerId()
82 + handler.toString()
88 this.handler = handler;
108 UpdateMsg update = replicationServerDomain.take(this.handler);
117 if (handler
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/
H A DDraftCNDbHandlerTest.java68 DraftCNDbHandler handler = null;
98 handler = new DraftCNDbHandler(replicationServer, dbEnv);
99 handler.setPurgeDelay(0);
120 handler.add(sn1, value1, serviceID1, changeNumber1);
121 handler.add(sn2, value2, serviceID2, changeNumber2);
122 handler.add(sn3, value3, serviceID3, changeNumber3);
125 int firstkey = handler.getFirstKey();
127 assertEquals(handler.getLastKey(), sn3);
129 DraftCNDBCursor dbc = handler.getReadCursor(firstkey);
153 handler
328 assertOnlyNewestRecordIsLeft(DraftCNDbHandler handler, int lastDraftCN) argument
[all...]

Completed in 36 milliseconds

1234567891011>>