@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class ReplicationRepairRequestControl extends Control
 ModifyRequest modifyRequest = new ModifyRequest("dc=example,dc=com",
      new Modification(ModificationType.REPLACE, "attrName", "attrValue"));
 modifyRequest.addControl(new ReplicationRepairRequestControl());
 LDAPResult modifyResult = connection.modify(modifyRequest);
 | Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | REPLICATION_REPAIR_REQUEST_OIDThe OID (1.3.6.1.4.1.26027.1.5.2) for the replication repair request
 control. | 
| Constructor and Description | 
|---|
| ReplicationRepairRequestControl()Creates a new replication repair request control. | 
| ReplicationRepairRequestControl(boolean isCritical)Creates a new replication repair request control with the specified
 criticality. | 
| ReplicationRepairRequestControl(Control control)Creates a new replication repair request control that is decoded from
 the provided generic control. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getControlName()Retrieves the user-friendly name for this control, if available. | 
| void | toString(java.lang.StringBuilder buffer)Appends a string representation of this LDAP control to the provided
 buffer. | 
decode, decode, decodeControls, decodeJSONControl, deregisterDecodeableControl, encode, encodeControls, equals, getOID, getValue, hashCode, hasValue, isCritical, readFrom, registerDecodeableControl, registerDecodeableControl, toJSONControl, toString, writeTo@NotNull public static final java.lang.String REPLICATION_REPAIR_REQUEST_OID
public ReplicationRepairRequestControl()
public ReplicationRepairRequestControl(boolean isCritical)
isCritical - Indicates whether the control should be marked
                     critical.public ReplicationRepairRequestControl(@NotNull Control control) throws LDAPException
control - The generic control to be decoded as a replication repair
                  request control.LDAPException - If the provided control cannot be decoded as a
                         replication repair request control.@NotNull public java.lang.String getControlName()
getControlName in class Control