| |
|
| java.lang.Object org.apache.harmony.security.asn1.ASN1Type org.apache.harmony.security.asn1.ASN1Any
All known Subclasses: org.apache.harmony.security.asn1.ASN1OpenType,
ASN1Any | public class ASN1Any extends ASN1Type (Code) | | This class represents ASN.1 ANY type.
See Also: http://asn1.elibel.tm.fr/en/standards/index.htm |
Constructor Summary | |
public | ASN1Any() Constructs ASN.1 ANY type
The constructor is provided for inheritance purposes
when there is a need to create a custom ASN.1 ANY type. |
ASN1Any | public ASN1Any()(Code) | | Constructs ASN.1 ANY type
The constructor is provided for inheritance purposes
when there is a need to create a custom ASN.1 ANY type.
To get a default implementation it is recommended to use
getInstance() method.
|
checkTag | final public boolean checkTag(int identifier)(Code) | | Tests provided identifier.
Parameters: identifier - - identifier to be verified - true |
getDecodedObject | public Object getDecodedObject(BerInputStream in) throws IOException(Code) | | Extracts array of bytes that represents full encoding from BER input
stream.
Parameters: in - -BER input stream array of bytes |
getInstance | public static ASN1Any getInstance()(Code) | | Returns ASN.1 ANY type default implementation
The default implementation works with full encoding
that is represented as raw byte array.
ASN.1 ANY type default implementation |
|
|
|