Class PersistentSearchFactory
- java.lang.Object
-
- org.apache.directory.api.ldap.codec.api.AbstractControlFactory<PersistentSearch>
-
- org.apache.directory.api.ldap.codec.controls.search.persistentSearch.PersistentSearchFactory
-
- All Implemented Interfaces:
ControlFactory<PersistentSearch>
public class PersistentSearchFactory extends AbstractControlFactory<PersistentSearch>
A factory to create a PersistentSearch control- Version:
- $Rev$, $Date$
- Author:
- Apache Directory Project
-
-
Field Summary
-
Fields inherited from class org.apache.directory.api.ldap.codec.api.AbstractControlFactory
codec, oid
-
-
Constructor Summary
Constructors Constructor Description PersistentSearchFactory(LdapApiService codec)Create a new PersistentSearchFactory instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddecodeValue(Control control, byte[] controlBytes)Decode a Control's value.voidencodeValue(Asn1Buffer buffer, Control control)Encode the value part of the control.PersistentSearchnewControl()Creates and returns a version of the Control.-
Methods inherited from class org.apache.directory.api.ldap.codec.api.AbstractControlFactory
decodeValue, getOid
-
-
-
-
Constructor Detail
-
PersistentSearchFactory
public PersistentSearchFactory(LdapApiService codec)
Create a new PersistentSearchFactory instance- Parameters:
codec- The LdapApiService instance
-
-
Method Detail
-
newControl
public PersistentSearch newControl()
Creates and returns a version of the Control.- Returns:
- The
CodecControldecorated version of the Control.
-
encodeValue
public void encodeValue(Asn1Buffer buffer, Control control)
Encode the value part of the control.- Specified by:
encodeValuein interfaceControlFactory<PersistentSearch>- Overrides:
encodeValuein classAbstractControlFactory<PersistentSearch>- Parameters:
buffer- The buffer into which to put the encoded valuecontrol- The control to encode
-
decodeValue
public void decodeValue(Control control, byte[] controlBytes) throws DecoderException
Decode a Control's value. It will feed the Control.- Specified by:
decodeValuein interfaceControlFactory<PersistentSearch>- Overrides:
decodeValuein classAbstractControlFactory<PersistentSearch>- Parameters:
control- The control to feedcontrolBytes- The data to decode- Throws:
DecoderException- If the value can't be decoded
-
-