public interface VirtualListViewResponse
extends org.apache.directory.api.ldap.model.message.Control
VirtualListViewResponse ::= SEQUENCE {
targetPosition INTEGER (0 .. maxInt),
contentCount INTEGER (0 .. maxInt),
virtualListViewResult ENUMERATED {
success (0),
operationsError (1),
protocolError (3),
unwillingToPerform (53),
insufficientAccessRights (50),
timeLimitExceeded (3),
adminLimitExceeded (11),
innapropriateMatching (18),
sortControlMissing (60),
offsetRangeError (61),
other(80),
...
},
contextID OCTET STRING OPTIONAL
}
| Modifier and Type | Field and Description |
|---|---|
static String |
OID
the OID of the response control
|
| Modifier and Type | Method and Description |
|---|---|
int |
getContentCount() |
byte[] |
getContextId() |
int |
getTargetPosition() |
VirtualListViewResultCode |
getVirtualListViewResult() |
void |
setContentCount(int contentCount)
Sets the number of returned entries
|
void |
setContextId(byte[] contextId)
Sets the context ID
|
void |
setTargetPosition(int targetPosition)
Sets the position in the list of entries
|
void |
setVirtualListViewResult(VirtualListViewResultCode virtualListViewResultCode)
Store the VLV result
|
static final String OID
int getTargetPosition()
void setTargetPosition(int targetPosition)
targetPosition - the position in the list of entriesint getContentCount()
void setContentCount(int contentCount)
contentCount - The number of returned entriesVirtualListViewResultCode getVirtualListViewResult()
void setVirtualListViewResult(VirtualListViewResultCode virtualListViewResultCode)
virtualListViewResultCode - The resultbyte[] getContextId()
void setContextId(byte[] contextId)
contextId - The context IDCopyright © 2003–2019 The Apache Software Foundation. All rights reserved.