public interface AdDirSyncRequest
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 is :
Client side :
realReplControlValue ::= SEQUENCE {
parentsFirst integer
maxAttributeCount integer
cookie OCTET STRING
}
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getCookie() |
int |
getMaxAttributeCount() |
int |
getParentsFirst() |
void |
setCookie(byte[] cookie) |
void |
setMaxAttributeCount(int maxAttributeCount) |
void |
setParentsFirst(int parentsFirst)
Tell the server that it should send the parents of the children before
their children.
|
static final String OID
int getParentsFirst()
void setParentsFirst(int parentsFirst)
parentsFirst - When set to 1, will return the parents before childrenint getMaxAttributeCount()
void setMaxAttributeCount(int maxAttributeCount)
maxAttributeCount - The maximum attribute count 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.Copyright © 2003–2019 The Apache Software Foundation. All rights reserved.