Home | History | Annotate | Download | only in x501

Lines Matching refs:attributeValue

212     private final AttributeValue value;
215 private AttributeTypeAndValue(int[] oid, AttributeValue value) throws IOException {
225 * Creates AttributeTypeAndValue with OID and AttributeValue.
232 public AttributeTypeAndValue(ObjectIdentifier oid, AttributeValue value) throws IOException {
306 public AttributeValue getValue() {
316 * value AttributeValue }
320 * AttributeValue ::= ANY DEFINED BY AttributeType
330 public static final ASN1Type attributeValue = new ASN1Type(ASN1Constants.TAG_PRINTABLESTRING) {
351 return new AttributeValue(str, bytesEncoded, in.tag);
356 throw new RuntimeException("AttributeValue getDecodedObject MUST NOT be invoked");
363 AttributeValue av = (AttributeValue) out.content;
376 AttributeValue av = (AttributeValue) out.content;
395 throw new RuntimeException("AttributeValue encodeContent MUST NOT be invoked");
399 AttributeValue av = (AttributeValue) out.content;
409 ASN1Oid.getInstance(), attributeValue }) {
413 return new AttributeTypeAndValue((int[]) values[0], (AttributeValue) values[1]);