aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/x501/AttributeTypeAndValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/model/x501/AttributeTypeAndValue.java')
-rw-r--r--src/main/model/x501/AttributeTypeAndValue.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/model/x501/AttributeTypeAndValue.java b/src/main/model/x501/AttributeTypeAndValue.java
index 179d6ff..c79ff77 100644
--- a/src/main/model/x501/AttributeTypeAndValue.java
+++ b/src/main/model/x501/AttributeTypeAndValue.java
@@ -1,5 +1,6 @@
package model.x501;
+import annotations.Assoc;
import model.asn1.ASN1Object;
import model.asn1.ObjectIdentifier;
import model.asn1.Tag;
@@ -24,11 +25,13 @@ public class AttributeTypeAndValue extends ASN1Object {
* The type of that attribute. For example, <pre>2.5.4.10</pre> is OU.
* It determines the format of the value.
*/
+ @Assoc(partOf = true)
private final ObjectIdentifier type;
/**
* Value corresponding to type.
*/
+ @Assoc(partOf = true)
private final ASN1Object value;
/**