Class PersistentSearchRequestControl
java.lang.Object
org.forgerock.opendj.ldap.controls.PersistentSearchRequestControl
- All Implemented Interfaces:
Control
The persistent search request control as defined in
draft-ietf-ldapext-psearch. This control allows a client to receive
notification of changes that occur in an LDAP server.
You can examine the entry change notification response control to get more information about a change returned by the persistent search.
Connection connection = ...;
SearchRequest request =
Requests.newSearchRequest(
"dc=example,dc=com", SearchScope.WHOLE_SUBTREE,
"(objectclass=inetOrgPerson)", "cn")
.addControl(PersistentSearchRequestControl.newControl(
true, true, true, // critical,changesOnly,returnECs
PersistentSearchChangeType.ADD,
PersistentSearchChangeType.DELETE,
PersistentSearchChangeType.MODIFY,
PersistentSearchChangeType.MODIFYDN));
ConnectionEntryReader reader = connection.search(request);
while (reader.hasNext()) {
if (!reader.isReference()) {
SearchResultEntry entry = reader.readEntry(); // Entry that changed
EntryChangeNotificationResponseControl control = entry.getControl(
EntryChangeNotificationResponseControl.DECODER,
new DecodeOptions());
PersistentSearchChangeType type = control.getChangeType();
if (type.equals(PersistentSearchChangeType.MODIFYDN)) {
// Previous DN: control.getPreviousName()
}
// Change number: control.getChangeNumber());
}
}
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe user-friendly aliases for the persistent search request control.static final ControlDecoder<PersistentSearchRequestControl>A decoder which can be used for decoding thePersistentSearchRequestControl.static final StringThe OID for the persistent search request control. -
Method Summary
Modifier and TypeMethodDescriptiongetAlias()Returns the control "friendly name" alias for the control.Returns an unmodifiable set containing the types of update operation for which change notifications should be returned.getOid()Returns the numeric OID associated with this control.getValue()Returns the value, if any, associated with this control.booleanhasValue()Returnstrueif this control has a value.booleanReturnstrueif only updated entries should be returned (added, modified, deleted, or subject to a modifyDN operation), otherwisefalseif the search will initially return all the existing entries which match the filter.booleanReturnstrueif it is unacceptable to perform the operation without applying the semantics of this control.booleanReturnstrueif the entry change notification response control should be included in updated entries that match the associated search criteria.newControl(boolean isCritical, boolean changesOnly, boolean returnEntryChangeNotificationControl, Collection<PersistentSearchChangeType> changeTypes) Creates a new persistent search request control.newControl(boolean isCritical, boolean changesOnly, boolean returnEntryChangeNotificationControl, PersistentSearchChangeType... changeTypes) Creates a new persistent search request control.toString()
-
Field Details
-
OID
The OID for the persistent search request control.- See Also:
-
ALIASES
The user-friendly aliases for the persistent search request control. -
DECODER
A decoder which can be used for decoding thePersistentSearchRequestControl.
-
-
Method Details
-
newControl
public static PersistentSearchRequestControl newControl(boolean isCritical, boolean changesOnly, boolean returnEntryChangeNotificationControl, Collection<PersistentSearchChangeType> changeTypes) Creates a new persistent search request control.- Parameters:
isCritical-trueif it is unacceptable to perform the operation without applying the semantics of this control, orfalseif it can be ignoredchangesOnly- Indicates whether only updated entries should be returned (added, modified, deleted, or subject to a modifyDN operation). If this parameter isfalsethen the search will initially return all the existing entries which match the filter.returnEntryChangeNotificationControl- Indicates whether the entry change notification response control should be included in updated entries that match the associated search criteria.changeTypes- The types of update operation for which change notifications should be returned.- Returns:
- The new control.
- Throws:
NullPointerException- IfchangeTypeswasnull.
-
newControl
public static PersistentSearchRequestControl newControl(boolean isCritical, boolean changesOnly, boolean returnEntryChangeNotificationControl, PersistentSearchChangeType... changeTypes) Creates a new persistent search request control.- Parameters:
isCritical-trueif it is unacceptable to perform the operation without applying the semantics of this control, orfalseif it can be ignoredchangesOnly- Indicates whether only updated entries should be returned (added, modified, deleted, or subject to a modifyDN operation). If this parameter isfalsethen the search will initially return all the existing entries which match the filter.returnEntryChangeNotificationControl- Indicates whether the entry change notification response control should be included in updated entries that match the associated search criteria.changeTypes- The types of update operation for which change notifications should be returned.- Returns:
- The new control.
- Throws:
NullPointerException- IfchangeTypeswasnull.
-
getChangeTypes
Returns an unmodifiable set containing the types of update operation for which change notifications should be returned.- Returns:
- An unmodifiable set containing the types of update operation for which change notifications should be returned.
-
getOid
Description copied from interface:ControlReturns the numeric OID associated with this control. -
getValue
Description copied from interface:ControlReturns the value, if any, associated with this control. Its format is defined by the specification of this control. -
hasValue
public boolean hasValue()Description copied from interface:ControlReturnstrueif this control has a value. In some circumstances it may be useful to determine if a control has a value, without actually calculating the value and incurring any performance costs. -
isChangesOnly
public boolean isChangesOnly()Returnstrueif only updated entries should be returned (added, modified, deleted, or subject to a modifyDN operation), otherwisefalseif the search will initially return all the existing entries which match the filter.- Returns:
trueif only updated entries should be returned (added, modified, deleted, or subject to a modifyDN operation), otherwisefalseif the search will initially return all the existing entries which match the filter.
-
isCritical
public boolean isCritical()Description copied from interface:ControlReturnstrueif it is unacceptable to perform the operation without applying the semantics of this control.The criticality field only has meaning in controls attached to request messages (except UnbindRequest). For controls attached to response messages and the UnbindRequest, the criticality field SHOULD be
false, and MUST be ignored by the receiving protocol peer. A value oftrueindicates that it is unacceptable to perform the operation without applying the semantics of the control.- Specified by:
isCriticalin interfaceControl- Returns:
trueif this control must be processed by the Directory Server, orfalseif it can be ignored.
-
isReturnEntryChangeNotificationControls
public boolean isReturnEntryChangeNotificationControls()Returnstrueif the entry change notification response control should be included in updated entries that match the associated search criteria.- Returns:
trueif the entry change notification response control should be included in updated entries that match the associated search criteria.
-
toString
-
getAlias
Description copied from interface:ControlReturns the control "friendly name" alias for the control.
-