Searched refs:attrId (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaParser.java843 String attrId = null;
850 attrId = attr.getID();
853 if (attrId.equals(NUMERICOID_ID) ||
854 attrId.equals(NAME_ID) ||
855 attrId.equals(SUP_ID) ||
856 attrId.equals(MAY_ID) ||
857 attrId.equals(MUST_ID) ||
858 attrId.equals(STRUCTURAL_ID) ||
859 attrId.equals(DESC_ID) ||
860 attrId
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStore.java293 void addRequestedAttribute(String attrId) { argument
297 requestedAttributes.add(attrId);
304 * @param attrId the attribute identifier
308 byte[][] getValues(String attrId) throws NamingException { argument
313 String cacheKey = name + "|" + attrId;
321 values = attrs.get(attrId);
360 for (String attrId : requestedAttributes) {
361 Attribute attr = attrs.get(attrId);
363 cacheAttribute(attrId, values);
364 valueMap.put(attrId, value
372 cacheAttribute(String attrId, byte[][] values) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContext.java264 private CT getLookupCT(String attrId) argument
266 return (attrId == null)
268 : fromAttrId(attrId);
619 String attrId = toAttrId(rrclass, rrtype);
620 Attribute attr = attrs.get(attrId);
622 attr = new BasicAttribute(attrId);
669 String attrId = ResourceRecord.getTypeName(rrtype);
671 attrId = ResourceRecord.getRrclassName(rrclass) + " " + attrId;
673 return attrId;
684 fromAttrId(String attrId) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java1466 ObjectIdentifier attrId = attrSeq[0].getOID();
1473 throw new IOException("Attribute " + attrId +
1476 if (attrId.equals(PKCS9FriendlyName_OID)) {
1478 } else if (attrId.equals(PKCS9LocalKeyId_OID)) {

Completed in 41 milliseconds