Package org.bouncycastle.asn1.cmc
Class TaggedAttribute
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.cmc.TaggedAttribute
-
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable
,org.bouncycastle.util.Encodable
public class TaggedAttribute extends org.bouncycastle.asn1.ASN1Object
TaggedAttribute from RFC5272TaggedAttribute ::= SEQUENCE { bodyPartID BodyPartID, attrType OBJECT IDENTIFIER, attrValues SET OF AttributeValue }
-
-
Constructor Summary
Constructors Constructor Description TaggedAttribute(BodyPartID bodyPartID, org.bouncycastle.asn1.ASN1ObjectIdentifier attrType, org.bouncycastle.asn1.ASN1Set attrValues)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.ASN1ObjectIdentifier
getAttrType()
org.bouncycastle.asn1.ASN1Set
getAttrValues()
BodyPartID
getBodyPartID()
static TaggedAttribute
getInstance(java.lang.Object o)
org.bouncycastle.asn1.ASN1Primitive
toASN1Primitive()
-
-
-
Constructor Detail
-
TaggedAttribute
public TaggedAttribute(BodyPartID bodyPartID, org.bouncycastle.asn1.ASN1ObjectIdentifier attrType, org.bouncycastle.asn1.ASN1Set attrValues)
-
-
Method Detail
-
getInstance
public static TaggedAttribute getInstance(java.lang.Object o)
-
getBodyPartID
public BodyPartID getBodyPartID()
-
getAttrType
public org.bouncycastle.asn1.ASN1ObjectIdentifier getAttrType()
-
getAttrValues
public org.bouncycastle.asn1.ASN1Set getAttrValues()
-
toASN1Primitive
public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
- Specified by:
toASN1Primitive
in interfaceorg.bouncycastle.asn1.ASN1Encodable
- Specified by:
toASN1Primitive
in classorg.bouncycastle.asn1.ASN1Object
-
-