Home | History | Annotate | Download | only in x501

Lines Matching refs:attributeValue

186     private final AttributeValue value;
189 private AttributeTypeAndValue(int[] oid, AttributeValue value) throws IOException {
199 * Creates AttributeTypeAndValue with OID and AttributeValue. Parses OID
209 public AttributeTypeAndValue(String sOid, AttributeValue value) throws IOException {
300 * value AttributeValue }
304 * AttributeValue ::= ANY DEFINED BY AttributeType
314 public static final ASN1Type attributeValue = new ASN1Type(ASN1Constants.TAG_PRINTABLESTRING) {
335 return new AttributeValue(str, bytesEncoded, in.tag);
340 throw new RuntimeException("AttributeValue getDecodedObject MUST NOT be invoked");
347 AttributeValue av = (AttributeValue) out.content;
360 AttributeValue av = (AttributeValue) out.content;
379 throw new RuntimeException("AttributeValue encodeContent MUST NOT be invoked");
383 AttributeValue av = (AttributeValue) out.content;
393 ASN1Oid.getInstance(), attributeValue }) {
397 return new AttributeTypeAndValue((int[]) values[0], (AttributeValue) values[1]);