org.apache.asn1.ber
Interface BEREncoderCallback

All Superinterfaces:
org.apache.asn1.codec.stateful.EncoderCallback

public interface BEREncoderCallback
extends org.apache.asn1.codec.stateful.EncoderCallback

A specialized encoder callback that handles specific BER events.

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

Method Summary
 void lengthEncoded(Tuple tlv)
          Method used to receive notification that a length was encoded.
 void partialValueEncoded(Tuple tlv)
          Method used to recieve notification that a part of the value was encoded.
 void tagEncoded(Tuple tlv)
          Method used to receive notification that a tag was encoded.
 
Methods inherited from interface org.apache.asn1.codec.stateful.EncoderCallback
encodeOccurred
 

Method Detail

tagEncoded

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

Parameters:
tlv - the TLV tuple

lengthEncoded

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

Parameters:
tlv - the TLV tuple

partialValueEncoded

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

Parameters:
tlv - the TLV tuple


Copyright © 2004-2009 . All Rights Reserved.