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 {
304 public AttributeValue getValue() {
314 * value AttributeValue }
318 * AttributeValue ::= ANY DEFINED BY AttributeType
328 public static final ASN1Type attributeValue = new ASN1Type(ASN1Constants.TAG_PRINTABLESTRING) {
349 return new AttributeValue(str, bytesEncoded, in.tag);
354 throw new RuntimeException("AttributeValue getDecodedObject MUST NOT be invoked");
361 AttributeValue av = (AttributeValue) out.content;
374 AttributeValue av = (AttributeValue) out.content;
393 throw new RuntimeException("AttributeValue encodeContent MUST NOT be invoked");
397 AttributeValue av = (AttributeValue) out.content;
407 ASN1Oid.getInstance(), attributeValue }) {
411 return new AttributeTypeAndValue((int[]) values[0], (AttributeValue) values[1]);