Package org.ldaptive.transcode
Class ByteArrayValueTranscoder
java.lang.Object
org.ldaptive.transcode.AbstractBinaryValueTranscoder<byte[]>
org.ldaptive.transcode.ByteArrayValueTranscoder
- All Implemented Interfaces:
ValueTranscoder<byte[]>
Decodes and encodes a byte array for use in an ldap attribute value.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
decodeBinaryValue
(byte[] value) Decodes the supplied ldap attribute value into a custom type.byte[]
encodeBinaryValue
(byte[] value) Encodes the supplied value into an ldap attribute value.Class
<byte[]> getType()
Returns the type produced by this value transcoder.Methods inherited from class org.ldaptive.transcode.AbstractBinaryValueTranscoder
decodeStringValue, encodeStringValue
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.ldaptive.transcode.ValueTranscoder
decoder, encoder
-
Constructor Details
-
ByteArrayValueTranscoder
public ByteArrayValueTranscoder()
-
-
Method Details
-
decodeBinaryValue
public byte[] decodeBinaryValue(byte[] value) Description copied from interface:ValueTranscoder
Decodes the supplied ldap attribute value into a custom type.- Parameters:
value
- to decode- Returns:
- decoded value
-
encodeBinaryValue
public byte[] encodeBinaryValue(byte[] value) Description copied from interface:ValueTranscoder
Encodes the supplied value into an ldap attribute value.- Parameters:
value
- to encode- Returns:
- encoded value
-
getType
Description copied from interface:ValueTranscoder
Returns the type produced by this value transcoder.- Returns:
- type produced by this value transcoder
-