Uses of Interface
org.apache.directory.shared.ldap.message.control.Control

Packages that use Control
org.apache.directory.shared.ldap.codec   
org.apache.directory.shared.ldap.codec.controls   
org.apache.directory.shared.ldap.codec.controls.replication.syncDoneValue   
org.apache.directory.shared.ldap.codec.controls.replication.syncInfoValue   
org.apache.directory.shared.ldap.codec.controls.replication.syncRequestValue   
org.apache.directory.shared.ldap.codec.controls.replication.syncStateValue   
org.apache.directory.shared.ldap.codec.search.controls.entryChange   
org.apache.directory.shared.ldap.codec.search.controls.pagedSearch   
org.apache.directory.shared.ldap.codec.search.controls.persistentSearch   
org.apache.directory.shared.ldap.codec.search.controls.subentries   
org.apache.directory.shared.ldap.message   
org.apache.directory.shared.ldap.message.internal   
 

Uses of Control in org.apache.directory.shared.ldap.codec
 

Methods in org.apache.directory.shared.ldap.codec that return Control
 Control LdapMessageCodec.getCodecControl(String oid)
           
 Control LdapMessageCodec.getControls(int i)
          Get the Control Object at a specific index
 Control LdapMessageCodec.getCurrentControl()
          Get the current Control Object
 

Methods in org.apache.directory.shared.ldap.codec that return types with arguments of type Control
 List<Control> LdapMessageCodec.getControls()
          Get the Control Objects
 

Methods in org.apache.directory.shared.ldap.codec with parameters of type Control
 void LdapMessageCodec.addControl(Control control)
          Add a control to the Controls array
 

Method parameters in org.apache.directory.shared.ldap.codec with type arguments of type Control
 void LdapMessageCodec.addControls(List<Control> controls)
          Set or add a list of controls to the Controls array.
 

Uses of Control in org.apache.directory.shared.ldap.codec.controls
 

Classes in org.apache.directory.shared.ldap.codec.controls that implement Control
 class AbstractControl
          A Asn1Object to store a Control.
 class CascadeControl
           
 class ControlImpl
          A genericcodec Control.
 class ManageDsaITControl
          Control which allows for the management of referrals and other DSA specific entities without processing them: meaning the referrals are treated as regular entries using this control.
 

Methods in org.apache.directory.shared.ldap.codec.controls with parameters of type Control
 Asn1Object ManageDsaITControlDecoder.decode(byte[] controlBytes, Control control)
           
 Asn1Object ControlDecoder.decode(byte[] controlBytes, Control control)
          Decodes raw ASN.1 encoded bytes into an Asn1Object for the control.
 Asn1Object CascadeControlDecoder.decode(byte[] controlBytes, Control control)
           
 

Uses of Control in org.apache.directory.shared.ldap.codec.controls.replication.syncDoneValue
 

Classes in org.apache.directory.shared.ldap.codec.controls.replication.syncDoneValue that implement Control
 class SyncDoneValueControl
          A syncDoneValue object as described in rfc4533.
 

Methods in org.apache.directory.shared.ldap.codec.controls.replication.syncDoneValue with parameters of type Control
 Asn1Object SyncDoneValueControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the syncDoneValueControl
 

Uses of Control in org.apache.directory.shared.ldap.codec.controls.replication.syncInfoValue
 

Classes in org.apache.directory.shared.ldap.codec.controls.replication.syncInfoValue that implement Control
 class SyncInfoValueControl
          A syncInfoValue object, as defined in RFC 4533
 

Methods in org.apache.directory.shared.ldap.codec.controls.replication.syncInfoValue with parameters of type Control
 Asn1Object SyncInfoValueControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the syncInfoValue control
 

Uses of Control in org.apache.directory.shared.ldap.codec.controls.replication.syncRequestValue
 

Classes in org.apache.directory.shared.ldap.codec.controls.replication.syncRequestValue that implement Control
 class SyncRequestValueControl
          A syncRequestValue object, as defined in RFC 4533
 

Methods in org.apache.directory.shared.ldap.codec.controls.replication.syncRequestValue with parameters of type Control
 Asn1Object SyncRequestValueControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the syncRequestValue control
 

Uses of Control in org.apache.directory.shared.ldap.codec.controls.replication.syncStateValue
 

Classes in org.apache.directory.shared.ldap.codec.controls.replication.syncStateValue that implement Control
 class SyncStateValueControl
          A syncStateValue object, as defined in RFC 4533
 

Methods in org.apache.directory.shared.ldap.codec.controls.replication.syncStateValue with parameters of type Control
 Asn1Object SyncStateValueControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the syncStateValue control
 

Uses of Control in org.apache.directory.shared.ldap.codec.search.controls.entryChange
 

Classes in org.apache.directory.shared.ldap.codec.search.controls.entryChange that implement Control
 class EntryChangeControl
          A response control that may be returned by Persistent Search entry responses.
 

Methods in org.apache.directory.shared.ldap.codec.search.controls.entryChange with parameters of type Control
 Asn1Object EntryChangeControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the entry change control
 

Uses of Control in org.apache.directory.shared.ldap.codec.search.controls.pagedSearch
 

Classes in org.apache.directory.shared.ldap.codec.search.controls.pagedSearch that implement Control
 class PagedResultsControl
          A request/response control used to implement a simple paging of search results.
 

Methods in org.apache.directory.shared.ldap.codec.search.controls.pagedSearch with parameters of type Control
 Asn1Object PagedResultsControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the paged search control
 

Uses of Control in org.apache.directory.shared.ldap.codec.search.controls.persistentSearch
 

Classes in org.apache.directory.shared.ldap.codec.search.controls.persistentSearch that implement Control
 class PersistentSearchControl
          A persistence search object
 

Methods in org.apache.directory.shared.ldap.codec.search.controls.persistentSearch with parameters of type Control
 Asn1Object PersistentSearchControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the persistence search control
 

Uses of Control in org.apache.directory.shared.ldap.codec.search.controls.subentries
 

Classes in org.apache.directory.shared.ldap.codec.search.controls.subentries that implement Control
 class SubentriesControl
          A searchRequest control : Subentries
 

Methods in org.apache.directory.shared.ldap.codec.search.controls.subentries with parameters of type Control
 Asn1Object SubentriesControlDecoder.decode(byte[] controlBytes, Control control)
          Decode the sub entry control
 

Uses of Control in org.apache.directory.shared.ldap.message
 

Methods in org.apache.directory.shared.ldap.message that return types with arguments of type Control
 Set<Control> SearchParams.getControls()
           
 

Methods in org.apache.directory.shared.ldap.message with parameters of type Control
 void SearchParams.addControl(Control control)
           
 

Method parameters in org.apache.directory.shared.ldap.message with type arguments of type Control
 void SearchParams.setControls(Set<Control> controls)
           
 

Uses of Control in org.apache.directory.shared.ldap.message.internal
 

Methods in org.apache.directory.shared.ldap.message.internal that return types with arguments of type Control
 Map<String,Control> InternalMessage.getControls()
          Gets the controls associated with this message mapped by OID.
 Map<String,Control> InternalAbstractMessage.getControls()
          Gets the controls associated with this message mapped by OID.
 

Methods in org.apache.directory.shared.ldap.message.internal with parameters of type Control
 void InternalMessage.add(Control control)
          Adds a control to this Message.
 void InternalAbstractMessage.add(Control control)
          Adds a control to this Message.
 void InternalMessage.addAll(Control[] controls)
          Adds an array of controls to this Message.
 void InternalAbstractMessage.addAll(Control[] controls)
           
 void InternalMessage.remove(Control control)
          Deletes a control removing it from this Message.
 void InternalAbstractMessage.remove(Control control)
          Deletes a control removing it from this Message.
 



Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.