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 class
Attribute.Template
A 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 void
encode(java.io.OutputStream ostream)
Write this value's DER encoding to an output stream using its own base tag.void
encode(Tag implicit, java.io.OutputStream ostream)
Write this value's DER encoding to an output stream using an implicit tag.Tag
getTag()
Returns the base tag for this type, not counting any tags that may be imposed on it by its context.static Attribute.Template
getTemplate()
OBJECT_IDENTIFIER
getType()
SET
getValues()
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:ASN1Value
Returns 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.IOException
Description copied from interface:ASN1Value
Write 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:ASN1Value
Write this value's DER encoding to an output stream using an implicit tag.
-
getTemplate
public static Attribute.Template getTemplate()
-
-