Package org.ldaptive.dn
Class DefaultDnParser.OctetStringHandler
- java.lang.Object
-
- org.ldaptive.dn.DefaultDnParser.OctetStringHandler
-
- All Implemented Interfaces:
ParseHandler
- Enclosing class:
- DefaultDnParser
private static final class DefaultDnParser.OctetStringHandler extends Object implements ParseHandler
Parse handler for decoding octet strings.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
OctetStringHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDecodedValue()
Returns the decoded octet string value.void
handle(DERParser parser, DERBuffer encoded)
Invoked when a DER path is encountered that belongs to this parse handler.
-
-
-
Field Detail
-
decoded
private String decoded
Decoded octet string.
-
-
Method Detail
-
handle
public void handle(DERParser parser, DERBuffer encoded)
Description copied from interface:ParseHandler
Invoked when a DER path is encountered that belongs to this parse handler.- Specified by:
handle
in interfaceParseHandler
- Parameters:
parser
- that invoked this handlerencoded
- to handle
-
getDecodedValue
public String getDecodedValue()
Returns the decoded octet string value.- Returns:
- decoded octet string
-
-