public interface AdDirSync
extends org.apache.directory.api.ldap.model.message.Control
Repl Control ::= SEQUENCE {
controlType 1.2.840.113556.1.4.841
controlValue replControlValue
criticality TRUE
}
the control value can be one of the two structures :
Client side :
realReplControlValue ::= SEQUENCE {
parentsFirst integer
maxReturnLength integer
cookie OCTET STRING
}
or
server side :
realReplControlValue ::= SEQUENCE {
flag integer
maxReturnLength integer
cookie OCTET STRING
}
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getCookie() |
AdDirSyncFlag |
getFlag() |
int |
getMaxReturnLength() |
int |
getParentFirst() |
void |
setCookie(byte[] cookie) |
void |
setFlag(AdDirSyncFlag flag) |
void |
setMaxReturnLength(int maxReturnLength) |
void |
setParentFirst(int parentFirst) |
static final String OID
int getParentFirst()
void setParentFirst(int parentFirst)
parentFirst - The parentFirst flag. A value of 1 will tell the server to return the parents first.int getMaxReturnLength()
void setMaxReturnLength(int maxReturnLength)
maxReturnLength - The maximum length of attributes to be returnedbyte[] getCookie()
void setCookie(byte[] cookie)
cookie - The cookie to send to the server. It's the value found in the response control. Should be null
for the first control.AdDirSyncFlag getFlag()
void setFlag(AdDirSyncFlag flag)
flag - The flag.Copyright © 2003–2015 The Apache Software Foundation. All rights reserved.