Class ReplServerStartMsg
java.lang.Object
org.opends.server.replication.protocol.ReplicationMsg
org.opends.server.replication.protocol.StartMsg
org.opends.server.replication.protocol.ReplServerStartMsg
Message sent by a replication server to another replication server at Startup.
-
Field Summary
Fields inherited from class org.opends.server.replication.protocol.StartMsg
generationId, groupId, MAX_WINDOW_SIZE, protocolVersion
Fields inherited from class org.opends.server.replication.protocol.ReplicationMsg
MSG_TYPE_DISK_ENCODING
-
Constructor Summary
ConstructorsConstructorDescriptionReplServerStartMsg
(ReplicationServerId rsId, com.forgerock.opendj.util.HostPort changelogEndpoint, Dn baseDN, ServerState serverState, GenerationId generationId, boolean sslEncryption, GroupId groupId) Create a ReplServerStartMsg. -
Method Summary
Modifier and TypeMethodDescriptionReturns the base DN from this ReplServerStartMsg.byte[]
getBytes
(short protocolVersion) Serializes the PDU using the provided replication protocol version.com.forgerock.opendj.util.HostPort
Returns the host port.int
Returns the degraded status threshold value.Returns the Server Id.Returns the serverState.boolean
Returns the SSL encryption value for the server that created the message.void
setDegradedStatusThreshold
(int degradedStatusThreshold) Set the degraded status threshold (For test purpose).toString()
Methods inherited from class org.opends.server.replication.protocol.StartMsg
getGenerationId, getGroupId, getVersion, setGroupId
Methods inherited from class org.opends.server.replication.protocol.ReplicationMsg
decodeMsg, isRetryable
-
Constructor Details
-
ReplServerStartMsg
public ReplServerStartMsg(ReplicationServerId rsId, com.forgerock.opendj.util.HostPort changelogEndpoint, Dn baseDN, ServerState serverState, GenerationId generationId, boolean sslEncryption, GroupId groupId) Create a ReplServerStartMsg.- Parameters:
rsId
- replication server idchangelogEndpoint
- replication server host portbaseDN
- base DN for which the ReplServerStartMsg is created.serverState
- our ServerState for this baseDN.generationId
- The generationId for this server.sslEncryption
- Whether to continue using SSL to encrypt messages after the start messages have been exchanged.groupId
- The group id of the RS
-
-
Method Details
-
getServerId
Returns the Server Id.- Returns:
- the Server Id
-
getChangelogEndpoint
public com.forgerock.opendj.util.HostPort getChangelogEndpoint()Returns the host port.- Returns:
- the host port
-
getBaseDN
Returns the base DN from this ReplServerStartMsg.- Returns:
- the base DN from this ReplServerStartMsg
-
getServerState
Returns the serverState.- Returns:
- the serverState
-
getBytes
public byte[] getBytes(short protocolVersion) Description copied from class:ReplicationMsg
Serializes the PDU using the provided replication protocol version. WARNING: should be overwritten by a PDU (sub class) we want to support older protocol version serialization for.- Specified by:
getBytes
in classReplicationMsg
- Parameters:
protocolVersion
- The protocol version to use for serialization. The version should normally be older than the current one.- Returns:
- The encoded PDU, or
null
if the message isn't supported in that protocol version.
-
getSSLEncryption
public boolean getSSLEncryption()Returns the SSL encryption value for the server that created the message.- Returns:
- the SSL encryption value for the server that created the message
-
getDegradedStatusThreshold
public int getDegradedStatusThreshold()Returns the degraded status threshold value.- Returns:
- the degraded status threshold value
-
setDegradedStatusThreshold
public void setDegradedStatusThreshold(int degradedStatusThreshold) Set the degraded status threshold (For test purpose).- Parameters:
degradedStatusThreshold
- The degraded status threshold to set.
-
toString
-