Interface IASN1TaggedObject
-
- All Superinterfaces:
IASN1Encodable,IASN1Primitive
- All Known Subinterfaces:
IDERTaggedObject
- All Known Implementing Classes:
ASN1TaggedObjectBC,DERTaggedObjectBC
public interface IASN1TaggedObject extends IASN1Primitive
This interface represents the wrapper for ASN1TaggedObject that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IASN1PrimitivegetObject()Calls actualgetObjectmethod for the wrapped ASN1TaggedObject object.intgetTagNo()Calls actualgetTagNomethod for the wrapped ASN1TaggedObject object.-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Primitive
getEncoded, getEncoded
-
-
-
-
Method Detail
-
getObject
IASN1Primitive getObject()
Calls actualgetObjectmethod for the wrapped ASN1TaggedObject object.- Returns:
IASN1Primitivewrapped ASN1Primitive object.
-
getTagNo
int getTagNo()
Calls actualgetTagNomethod for the wrapped ASN1TaggedObject object.- Returns:
- tagNo value.
-
-