Package org.mozilla.jss.pkix.primitive
Class Attribute
- java.lang.Object
-
- org.mozilla.jss.pkix.primitive.Attribute
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAttribute.TemplateA Template for decoding an Attribute.
-
Constructor Summary
Constructors Constructor Description Attribute(OBJECT_IDENTIFIER type, ASN1Value value)Attribute(OBJECT_IDENTIFIER type, SET values)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidencode(java.io.OutputStream ostream)Write this value's DER encoding to an output stream using its own base tag.voidencode(Tag implicit, java.io.OutputStream ostream)Write this value's DER encoding to an output stream using an implicit tag.TaggetTag()Returns the base tag for this type, not counting any tags that may be imposed on it by its context.static Attribute.TemplategetTemplate()OBJECT_IDENTIFIERgetType()SETgetValues()If this AVA was constructed, returns the SET of ASN1Values passed to the constructor.
-
-
-
Field Detail
-
TAG
public static final Tag TAG
-
-
Constructor Detail
-
Attribute
public Attribute(OBJECT_IDENTIFIER type, SET values)
-
Attribute
public Attribute(OBJECT_IDENTIFIER type, ASN1Value value)
-
-
Method Detail
-
getTag
public Tag getTag()
Description copied from interface:ASN1ValueReturns the base tag for this type, not counting any tags that may be imposed on it by its context.
-
getType
public OBJECT_IDENTIFIER getType()
-
getValues
public SET getValues()
If this AVA was constructed, returns the SET of ASN1Values passed to the constructor. If this Attribute was decoded with an Attribute.Template, returns a SET of ANYs.
-
encode
public void encode(java.io.OutputStream ostream) throws java.io.IOExceptionDescription copied from interface:ASN1ValueWrite this value's DER encoding to an output stream using its own base tag.
-
encode
public void encode(Tag implicit, java.io.OutputStream ostream) throws java.io.IOException
Description copied from interface:ASN1ValueWrite this value's DER encoding to an output stream using an implicit tag.
-
getTemplate
public static Attribute.Template getTemplate()
-
-