From f8e05e4376e1d5f00c93307605eb768281ad240b Mon Sep 17 00:00:00 2001 From: Yuuta Liang Date: Tue, 28 Nov 2023 21:08:03 -0800 Subject: Add association tags and generate UML Signed-off-by: Yuuta Liang --- src/main/model/csr/Attribute.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/model/csr/Attribute.java') 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,
2.5.29.14
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; /** -- cgit v1.2.3