1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1999
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
package com.netscape.jndi.ldap.controls;
import javax.naming.ldap.Control;
import netscape.ldap.controls.*;
/**
* Represents an LDAP v3 server control that specifies a persistent
* search (an ongoing search operation), which allows your LDAP client
* to get notification of changes to the directory. (The OID for this
* control is 2.16.840.1.113730.3.4.3.) You can use this control in
* conjunction with an "entry change notification" control.
* <P>
*
* To use persistent searching for change notification, you create a
* "persistent search" control that specifies the types of changes that
* you want to track. You include the control in a search request.
* If an entry in the directory is changed, the server determines if
* the entry matches the search criteria in your request and if the
* change is the type of change that you are tracking. If both of
* these are true, the server sends the entry to your client.
* <P>
*
* The server can also include an "entry change notification" control
* with the entry. (The OID for this control is 2.16.840.1.113730.3.4.7.)
* This control contains additional information about the
* change made to the entry, including the type of change made,
* the change number (which corresponds to an item in the server's
* change log, if the server supports a change log), and, if the
* entry was renamed, the old DN of the entry.
* <P>
*
* When constructing an <CODE>LDAPPersistSearchControl</CODE> object,
* you can specify the following information:
* <P>
*
* <UL>
* <LI>the type of change you want to track (added, modified, deleted,
* or renamed entries)
* <LI>a preference indicating whether or not you want the server to
* return all entries that initially matched the search criteria
* (rather than only the entries that change)
* <LI>a preference indicating whether or not you want entry change
* notification controls included with every entry returned by the
* server
* </UL>
* <P>
* @see com.netscape.jndi.ldap.controls.LdapEntryChangeControl
*/
public class LdapPersistSearchControl extends LDAPPersistSearchControl implements Control {
/**
* Change type specifying that you want to track additions of new
* entries to the directory. You can either specify this change type
* when constructing an <CODE>LdapPersistSearchControl</CODE> or
* by using the <CODE>setChangeTypes</CODE> method.
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#getChangeTypes
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#setChangeTypes
*/
public static final int ADD = LDAPPersistSearchControl.ADD;
/**
* Change type specifying that you want to track removals of
* entries from the directory. You can either specify this change type
* when constructing an <CODE>LdapPersistSearchControl</CODE> or
* by using the <CODE>setChangeTypes</CODE> method.
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#getChangeTypes
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#setChangeTypes
*/
public static final int DELETE = LDAPPersistSearchControl.DELETE;
/**
* Change type specifying that you want to track modifications of
* entries in the directory. You can either specify this change type
* when constructing an <CODE>LdapPersistSearchControl</CODE> or
* by using the <CODE>setChangeTypes</CODE> method.
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#getChangeTypes
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#setChangeTypes
*/
public static final int MODIFY = LDAPPersistSearchControl.MODIFY;
/**
* Change type specifying that you want to track modifications of the
* DNs of entries in the directory. You can either specify this change type
* when constructing an <CODE>LdapPersistSearchControl</CODE> or
* by using the <CODE>setChangeTypes</CODE> method.
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#getChangeTypes
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#setChangeTypes
*/
public static final int MODDN = LDAPPersistSearchControl.MODDN;
/**
* Constructs an <CODE>LdapPersistSearchControl</CODE> object
* that specifies a persistent search.
*
* @param changeTypes The change types to be monitored. You can perform
* a bitwise OR on any of the following values and specify the result as
* the change types:
* <UL>
* <LI><CODE>LdapPersistSearchControl.ADD</CODE> (to track new entries
* added to the directory)
* <LI><CODE>LdapPersistSearchControl.DELETE</CODE> (to track entries
* removed from the directory)
* <LI><CODE>LdapPersistSearchControl.MODIFY</CODE> (to track entries
* that have been modified)
* <LI><CODE>LdapPersistSearchControl.MODDN</CODE> (to track entries
* that have been renamed)
* </UL>
* @param changesOnly <code>true</code> if you do not want the server
* to return all existing entries in the directory that match the
* search criteria. (You just want the changed entries to be returned.)
* @param returnControls <code>true</code> you want the server to return
* entry change controls with each entry in the search results.
* @param isCritical <code>true</code> if this control is critical to
* the search operation (for example, if the server does not support
* this control, you may not want the server to perform the search
* at all.)
* @see com.netscape.jndi.ldap.controls.LdapEntryChangeControl
*/
public LdapPersistSearchControl(int changeTypes, boolean changesOnly,
boolean returnControls, boolean isCritical) {
super(changeTypes, changesOnly, returnControls, isCritical);
}
/**
* Gets the change types monitored by this control.
* @return Integer representing the change types that you want monitored.
* This value can be the bitwise OR of <code>ADD, DELETE, MODIFY,</code>
* and/or <code>MODDN</code>. If the change type is unknown,
* this method returns -1.
*/
public int getChangeTypes() {
return super.getChangeTypes();
}
/**
* Indicates whether you want the server to send any existing
* entries that already match the search criteria or only the
* entries that have changed.
* @return If <code>true</code>, the server returns only the
* entries that have changed. If <code>false</code>, the server
* also returns any existing entries that match the search criteria
* but have not changed.
*/
public boolean getChangesOnly() {
return super.getChangesOnly();
}
/**
* Indicates whether or not the server includes an "entry change
* notification" control with each entry it sends back to the client
* during the persistent search.
* @return <code>true</code> if the server includes "entry change
* notification" controls with the entries it sends during the
* persistent search.
* @see com.netscape.jndi.ldap.controls.LdapEntryChangeControl
*/
public boolean getReturnControls() {
return super.getReturnControls();
}
/**
* Sets the change types that you want monitored by this control.
* @param types Integer representing the change types that you want monitored.
* This value can be the bitwise OR of <code>ADD, DELETE, MODIFY,</code>
* and/or <code>MODDN</code>.
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#getChangeTypes
*/
public void setChangeTypes(int types) {
super.setChangeTypes(types);
}
/**
* Specifies whether you want the server to send any existing
* entries that already match the search criteria or only the
* entries that have changed.
* @param changesOnly If <code>true</code>, the server returns only the
* entries that have changed. If <code>false</code>, the server
* also returns any existing entries that match the search criteria
* but have not changed.
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#getChangesOnly
*/
public void setChangesOnly(boolean changesOnly) {
super.setChangesOnly(changesOnly);
}
/**
* Specifies whether you want the server to include an "entry change
* notification" control with each entry it sends back to the client
* during the persistent search.
* @param returnControls If <code>true</code>, the server includes
* "entry change notification" controls with the entries it sends
* during the persistent search.
* @see com.netscape.jndi.ldap.controls.LdapEntryChangeControl
* @see com.netscape.jndi.ldap.controls.LdapPersistSearchControl#setReturnControls
*/
public void setReturnControls(boolean returnControls) {
super.setReturnControls(returnControls);
}
/**
* Retrieves the ASN.1 BER encoded value of the LDAP control.
* Null is returned if the value is absent.
* @return A possibly null byte array representing the ASN.1 BER
* encoded value of the LDAP control.
*/
public byte[] getEncodedValue() {
return getValue();
}
}
|