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 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 boolean
StatusMachine. isTransitionAllowed(ServerStatus fromStatus, ServerStatus toStatus)
Returns whether transition fromfromStatus
totoStatus
is valid.static boolean
StatusMachine. isValidInitialStatus(ServerStatus initStatus)
Checks if a given status is valid as an entering status for the state machine.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, com.forgerock.opendj.discovery.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, ServerState newestChangelogStateOfReplica)
-
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 new status, i.e.ServerStatus
ChangeStatusMsg. getRequestedStatus()
Get the requested status, i.e.ServerStatus
StartSessionMsg. getStatus()
Get the status from this message.Methods in org.opends.server.replication.protocol with parameters of type ServerStatus Modifier and Type Method Description static ChangeStatusMsg
ChangeStatusMsg. requestThatDsChangesStatusTo(ServerStatus requestedStatus)
Create a new ChangeStatusMsg suitable for sending from a replication server to a replica.static ChangeStatusMsg
ChangeStatusMsg. signalThatDsStatusChangedTo(ServerStatus newStatus)
Create a new ChangeStatusMsg suitable for sending from a replica to a replication server.Constructors in org.opends.server.replication.protocol with parameters of type ServerStatus Constructor Description 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, ServerState newestChangelogStateOfReplica)
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.
-