Searched refs:ServerStartMsg (Results 1 - 25 of 54) sorted by relevance

123

/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DServerStartMsg.java39 public class ServerStartMsg extends StartMsg class in inherits:StartMsg
65 * Creates a new ServerStartMsg. This message is to be sent by an LDAP
69 * @param serverId2 The serverId of the server for which the ServerStartMsg
81 public ServerStartMsg(int serverId2, String serverURL, DN baseDN, method in class:ServerStartMsg
103 * Creates a new ServerStartMsg from its encoded form.
106 * ServerStartMsg.
108 * encoded form of the ServerStartMsg.
110 ServerStartMsg(byte[] in) throws DataFormatException method in class:ServerStartMsg
260 return "ServerStartMsg content: " +
H A DReplicationMsg.java161 return new ServerStartMsg(buffer);
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DServerStartMsg.java39 public class ServerStartMsg extends StartMsg class in inherits:StartMsg
65 * Creates a new ServerStartMsg. This message is to be sent by an LDAP
69 * @param serverId2 The serverId of the server for which the ServerStartMsg
81 public ServerStartMsg(int serverId2, String serverURL, DN baseDN, method in class:ServerStartMsg
103 * Creates a new ServerStartMsg from its encoded form.
106 * ServerStartMsg.
108 * encoded form of the ServerStartMsg.
110 ServerStartMsg(byte[] in) throws DataFormatException method in class:ServerStartMsg
260 return "ServerStartMsg content: " +
H A DReplicationMsg.java161 return new ServerStartMsg(buffer);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/
H A DServerStartMsg.java39 public class ServerStartMsg extends StartMsg class in inherits:StartMsg
65 * Creates a new ServerStartMsg. This message is to be sent by an LDAP
69 * @param serverId2 The serverId of the server for which the ServerStartMsg
81 public ServerStartMsg(int serverId2, String serverURL, DN baseDN, method in class:ServerStartMsg
103 * Creates a new ServerStartMsg from its encoded form.
106 * ServerStartMsg.
108 * encoded form of the ServerStartMsg.
110 ServerStartMsg(byte[] in) throws DataFormatException method in class:ServerStartMsg
260 return "ServerStartMsg content: " +
H A DReplicationMsg.java161 return new ServerStartMsg(buffer);
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DServerStartMsg.java40 public class ServerStartMsg extends StartMsg class in inherits:StartMsg
65 * Creates a new ServerStartMsg. This message is to be sent by an LDAP
69 * @param serverId2 The serverId of the server for which the ServerStartMsg
81 public ServerStartMsg(int serverId2, String serverURL, String baseDn, method in class:ServerStartMsg
103 * Creates a new ServerStartMsg from its encoded form.
106 * ServerStartMsg.
108 * encoded form of the ServerStartMsg.
110 public ServerStartMsg(byte[] in) throws DataFormatException method in class:ServerStartMsg
392 return "ServerStartMsg content: " +
H A DReplicationMsg.java166 return new ServerStartMsg(buffer);
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DServerStartMsg.java40 public class ServerStartMsg extends StartMsg class in inherits:StartMsg
65 * Creates a new ServerStartMsg. This message is to be sent by an LDAP
69 * @param serverId2 The serverId of the server for which the ServerStartMsg
81 public ServerStartMsg(int serverId2, String serverURL, String baseDn, method in class:ServerStartMsg
103 * Creates a new ServerStartMsg from its encoded form.
106 * ServerStartMsg.
108 * encoded form of the ServerStartMsg.
110 public ServerStartMsg(byte[] in) throws DataFormatException method in class:ServerStartMsg
392 return "ServerStartMsg content: " +
H A DReplicationMsg.java166 return new ServerStartMsg(buffer);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DServerStartMsg.java40 public class ServerStartMsg extends StartMsg class in inherits:StartMsg
65 * Creates a new ServerStartMsg. This message is to be sent by an LDAP
69 * @param serverId2 The serverId of the server for which the ServerStartMsg
81 public ServerStartMsg(int serverId2, String serverURL, String baseDn, method in class:ServerStartMsg
103 * Creates a new ServerStartMsg from its encoded form.
106 * ServerStartMsg.
108 * encoded form of the ServerStartMsg.
110 public ServerStartMsg(byte[] in) throws DataFormatException method in class:ServerStartMsg
392 return "ServerStartMsg content: " +
H A DReplicationMsg.java166 return new ServerStartMsg(buffer);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/
H A DDataServerHandler.java333 public boolean processStartFromRemote(ServerStartMsg serverStartMsg)
370 public void startFromRemoteDS(ServerStartMsg inServerStartMsg)
H A DReplicationServer.java59 import org.opends.server.replication.protocol.ServerStartMsg;
256 if (msg instanceof ServerStartMsg)
260 dsHandler.startFromRemoteDS((ServerStartMsg) msg);
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DDataServerHandler.java412 public boolean processStartFromRemote(ServerStartMsg serverStartMsg)
468 public void startFromRemoteDS(ServerStartMsg inServerStartMsg)
H A DReplicationServer.java331 if (msg instanceof ServerStartMsg)
335 handler.startFromRemoteDS((ServerStartMsg)msg);
/forgerock/opendj2/src/server/org/opends/server/replication/server/
H A DDataServerHandler.java351 public boolean processStartFromRemote(ServerStartMsg serverStartMsg)
388 public void startFromRemoteDS(ServerStartMsg inServerStartMsg)
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DDataServerHandler.java403 public boolean processStartFromRemote(ServerStartMsg serverStartMsg)
440 public void startFromRemoteDS(ServerStartMsg inServerStartMsg)
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/server/
H A DDataServerHandler.java412 public boolean processStartFromRemote(ServerStartMsg serverStartMsg)
468 public void startFromRemoteDS(ServerStartMsg inServerStartMsg)
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/
H A DDataServerHandler.java351 public boolean processStartFromRemote(ServerStartMsg serverStartMsg)
388 public void startFromRemoteDS(ServerStartMsg inServerStartMsg)
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/protocol/
H A DSynchronizationMsgTest.java653 * Test that ServerStartMsg encoding and decoding works
654 * by checking that : msg == new ServerStartMsg(msg.getBytes()).
660 ServerStartMsg msg = new ServerStartMsg(
663 ServerStartMsg newMsg = new ServerStartMsg(msg.getBytes(getCurrentVersion()));
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/protocol/
H A DSynchronizationMsgTest.java653 * Test that ServerStartMsg encoding and decoding works
654 * by checking that : msg == new ServerStartMsg(msg.getBytes()).
660 ServerStartMsg msg = new ServerStartMsg(
663 ServerStartMsg newMsg = new ServerStartMsg(msg.getBytes(getCurrentVersion()));
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/protocol/
H A DSynchronizationMsgTest.java650 * Test that ServerStartMsg encoding and decoding works
651 * by checking that : msg == new ServerStartMsg(msg.getBytes()).
657 ServerStartMsg msg = new ServerStartMsg(
660 ServerStartMsg newMsg = new ServerStartMsg(msg.getBytes(getCurrentVersion()));
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DAssuredReplicationPluginTest.java461 ServerStartMsg serverStartMsg = (ServerStartMsg) session.receive();
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/
H A DReplicationServerTest.java903 // send a ServerStartMsg with an empty ServerState.
906 ServerStartMsg msg = new ServerStartMsg(1723, url, TEST_ROOT_DN,

Completed in 127 milliseconds

123