Uses of Class
org.opends.server.replication.common.ServerStatus
-
Packages that use ServerStatus Package Description org.opends.server.replication.common This package contains utilities that can are used by all the packages below org.opends.server.replication.org.opends.server.replication.plugin This package contains the part of the Multi-master replication code that works on the Directory Server side.org.opends.server.replication.protocol This package contains the code used by the replication server and by the code running on the Directory Server side to exchange their information.org.opends.server.replication.service This package contains the generic of the Multi-Master replication code that works on the Directory Server side. -
-
Uses of ServerStatus in org.opends.server.replication.common
Methods in org.opends.server.replication.common that return ServerStatus Modifier and Type Method Description static ServerStatus
StatusMachine. computeNewStatus(ServerStatus curStatus, StatusMachineEvent event)
Computes the new status of the state machine according to the current status and the new generated event.ServerStatus
DSInfo. getStatus()
Get the DS status.static ServerStatus
ServerStatus. valueOf(byte value)
Returns the ServerStatus matching the passed status numeric representation.static ServerStatus
ServerStatus. valueOf(String name)
Returns the enum constant of this type with the specified name.static ServerStatus[]
ServerStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.opends.server.replication.common with parameters of type ServerStatus Modifier and Type Method Description static ServerStatus
StatusMachine. computeNewStatus(ServerStatus curStatus, StatusMachineEvent event)
Computes the new status of the state machine according to the current status and the new generated event.static boolean
StatusMachine. isValidInitialStatus(ServerStatus initStatus)
Checks if a given status is valid as an entering status for the state machine.static StatusMachineEvent
StatusMachineEvent. statusToEvent(ServerStatus reqStatus)
Returns the event matching the passed requested status.Constructors in org.opends.server.replication.common with parameters of type ServerStatus Constructor Description DSInfo(ReplicaId replicaId, com.forgerock.opendj.util.HostPort hostPort, ReplicationServerId rsId, long generationId, ServerStatus status, GroupId groupId, ProcessId processId, Set<String> refUrls, Set<String> eclIncludes, Set<String> eclIncludesForDeletes, short protocolVersion, Set<com.forgerock.opendj.util.HostPort> adminHostPorts, Map<ConnectionSecurity,Set<com.forgerock.opendj.util.HostPort>> ldapHostPorts)
Creates a new instance of DSInfo with every given info. -
Uses of ServerStatus in org.opends.server.replication.plugin
Methods in org.opends.server.replication.plugin with parameters of type ServerStatus Modifier and Type Method Description void
LDAPReplicationDomain. sessionInitiated(ServerStatus initStatus, ServerState rsState)
-
Uses of ServerStatus in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return ServerStatus Modifier and Type Method Description ServerStatus
ChangeStatusMsg. getNewStatus()
Get the requested status.ServerStatus
ChangeStatusMsg. getRequestedStatus()
Get the requested status.ServerStatus
StartSessionMsg. getStatus()
Get the status from this message.Constructors in org.opends.server.replication.protocol with parameters of type ServerStatus Constructor Description ChangeStatusMsg(ServerStatus requestedStatus, ServerStatus newStatus)
Create a new ChangeStatusMsg.StartSessionMsg(ServerStatus status, Set<String> referralsURLs)
Creates a new message with the given required parameters. -
Uses of ServerStatus in org.opends.server.replication.service
Methods in org.opends.server.replication.service that return ServerStatus Modifier and Type Method Description ServerStatus
ReplicationDomain. getStatus()
Gets the status for this domain.Methods in org.opends.server.replication.service with parameters of type ServerStatus Modifier and Type Method Description void
ReplicationDomain. sessionInitiated(ServerStatus initStatus, ServerState rsState)
Set the initial status of the domain and perform necessary initializations.void
ReplicationBroker. signalStatusChange(ServerStatus newStatus)
Signals the RS we just entered a new status.
-