Home | History | Annotate | Download | only in x509

Lines Matching defs:attributes

13  * This extension may contain further X.500 attributes of the subject. See also
17 * SubjectDirectoryAttributes ::= Attributes
18 * Attributes ::= SEQUENCE SIZE (1..MAX) OF Attribute
34 private Vector attributes = new Vector();
58 * SubjectDirectoryAttributes ::= Attributes
59 * Attributes ::= SEQUENCE SIZE (1..MAX) OF Attribute
80 attributes.addElement(new Attribute(s));
85 * Constructor from a vector of attributes.
87 * The vector consists of attributes of type {@link Attribute Attribute}
89 * @param attributes
90 * The attributes.
93 public SubjectDirectoryAttributes(Vector attributes)
95 Enumeration e = attributes.elements();
99 this.attributes.addElement(e.nextElement());
109 * SubjectDirectoryAttributes ::= Attributes
110 * Attributes ::= SEQUENCE SIZE (1..MAX) OF Attribute
126 Enumeration e = attributes.elements();
138 * @return Returns the attributes.
142 return attributes;