org.apache.asn1.ber
Interface BERDecoderCallback

All Superinterfaces:
org.apache.asn1.codec.stateful.DecoderCallback
All Known Implementing Classes:
AbstractDecoderTestCase, BERDecoderCallbackAdapter, BERDigester.DigesterCallback

public interface BERDecoderCallback
extends org.apache.asn1.codec.stateful.DecoderCallback

A specialized decoder callback that handles specific BER events.

Version:
$Rev: 157644 $
Author:
Apache Directory Project

Method Summary
 void lengthDecoded(Tuple tlv)
          Method used to receive notification that a length was decoded.
 void partialValueDecoded(Tuple tlv)
          Method used to recieve notification that a part of the value was decoded.
 void tagDecoded(Tuple tlv)
          Method used to receive notification that a tag was decoded.
 
Methods inherited from interface org.apache.asn1.codec.stateful.DecoderCallback
decodeOccurred
 

Method Detail

tagDecoded

void tagDecoded(Tuple tlv)
Method used to receive notification that a tag was decoded. The following tag properties of the TLV tuple are valid at this point:

Parameters:
tlv - the TLV tuple

lengthDecoded

void lengthDecoded(Tuple tlv)
Method used to receive notification that a length was decoded. The following properties of the TLV tuple are valid at this point:

Parameters:
tlv - the TLV tuple

partialValueDecoded

void partialValueDecoded(Tuple tlv)
Method used to recieve notification that a part of the value was decoded.

Parameters:
tlv - the TLV tuple


Copyright © 2004-2009 . All Rights Reserved.