Class SyncStateValueFactory
- java.lang.Object
-
- org.apache.directory.api.ldap.codec.api.AbstractControlFactory<SyncStateValue>
-
- org.apache.directory.api.ldap.extras.controls.syncrepl_impl.SyncStateValueFactory
-
- All Implemented Interfaces:
ControlFactory<SyncStateValue>
public class SyncStateValueFactory extends AbstractControlFactory<SyncStateValue>
AControlFactorywhich createsSyncStateValuecontrols.- 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 SyncStateValueFactory(LdapApiService codec)Creates a new instance of SyncStateValueFactory.
-
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.SyncStateValuenewControl()Creates and returns a version of the Control.-
Methods inherited from class org.apache.directory.api.ldap.codec.api.AbstractControlFactory
decodeValue, getOid
-
-
-
-
Constructor Detail
-
SyncStateValueFactory
public SyncStateValueFactory(LdapApiService codec)
Creates a new instance of SyncStateValueFactory.- Parameters:
codec- The codec for this factory.
-
-
Method Detail
-
newControl
public SyncStateValue 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<SyncStateValue>- Overrides:
encodeValuein classAbstractControlFactory<SyncStateValue>- 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<SyncStateValue>- Overrides:
decodeValuein classAbstractControlFactory<SyncStateValue>- Parameters:
control- The control to feedcontrolBytes- The data to decode- Throws:
DecoderException- If the value can't be decoded
-
-