/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/ |
H A D | CommonAuditLogPublisher.java | 37 * 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 D | ClientConnectionMonitorProvider.java | 60 // 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 D | ClientConnectionMonitorProvider.java | 59 // 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 D | ClientConnectionMonitorProvider.java | 60 // 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 D | ClientConnectionMonitorProvider.java | 60 // 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 D | ClientConnectionMonitorProvider.java | 59 // 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 D | XMLResourceExceptionHandlerTest.java | 37 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 D | HandlerProvider.java | 38 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 D | OpenAMHttpApplication.java | 37 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 D | IdentityServicesExceptionMappingHandlerTest.java | 29 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 D | ClientConnectionMonitorProvider.java | 54 * 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 D | ExportableDataProvider.java | 49 * @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 D | ImportableDataProvider.java | 64 * @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 D | XMLResourceExceptionHandlerTest.java | 37 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 D | IdentityServicesExceptionMappingHandlerTest.java | 29 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 D | ApiProviderAssert.java | 51 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 D | ExternalChangeLogSessionImpl.java | 44 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 D | ServerReader.java | 62 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 D | ServerWriter.java | 59 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 D | ServerReader.java | 61 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 D | ServerWriter.java | 58 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 D | ExternalChangeLogSessionImpl.java | 44 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 D | ServerReader.java | 62 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 D | ServerWriter.java | 59 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 D | DraftCNDbHandlerTest.java | 68 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...] |