aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/csr/Attribute.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/model/csr/Attribute.java')
-rw-r--r--src/main/model/csr/Attribute.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/model/csr/Attribute.java b/src/main/model/csr/Attribute.java
index 2daa000..26c3271 100644
--- a/src/main/model/csr/Attribute.java
+++ b/src/main/model/csr/Attribute.java
@@ -1,5 +1,6 @@
package model.csr;
+import annotations.Assoc;
import model.asn1.ASN1Object;
import model.asn1.ObjectIdentifier;
import model.asn1.Tag;
@@ -26,11 +27,13 @@ public class Attribute extends ASN1Object {
* The type of that attribute. For example, <pre>2.5.29.14</pre> is subjectKeyIdentifier.
* It determines the format of the value.
*/
+ @Assoc(partOf = true)
private final ObjectIdentifier type;
/**
* Value set.
*/
+ @Assoc(partOf = true)
private final Values values;
/**