Searched refs:attrID (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DSortKey.java43 private String attrID; field in class:SortKey
60 * @param attrID The non-null ID of the attribute to be used as a sort
63 public SortKey(String attrID) { argument
64 this.attrID = attrID;
72 * @param attrID The non-null ID of the attribute to be used as
82 public SortKey(String attrID, boolean ascendingOrder, argument
85 this.attrID = attrID;
96 return attrID;
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttributes.java90 * @param attrID The non-null id of the attribute to retrieve.
92 * case of its attribute ids, the case of attrID
94 * @return The attribute identified by attrID; null if not found.
98 Attribute get(String attrID); argument
129 * @param attrID non-null The id of the attribute to add.
131 * case of its attribute ids, the case of attrID
135 * @return The Attribute with attrID that was previous in this attribute set;
139 Attribute put(String attrID, Object val); argument
156 * Removes the attribute with the attribute id 'attrID' from
159 * @param attrID Th
167 remove(String attrID) argument
[all...]
H A DBasicAttributes.java106 * The attribute specified by attrID and val are added to the newly
110 * @param attrID non-null The id of the attribute to add.
114 public BasicAttributes(String attrID, Object val) { argument
116 this.put(new BasicAttribute(attrID, val));
121 * The attribute specified by attrID and val are added to the newly
125 * @param attrID non-null The id of the attribute to add.
127 * case of its attribute ids, the case of attrID
136 public BasicAttributes(String attrID, Object val, boolean ignoreCase) { argument
138 this.put(new BasicAttribute(attrID, val));
160 public Attribute get(String attrID) { argument
174 put(String attrID, Object val) argument
186 remove(String attrID) argument
[all...]
H A DBasicAttribute.java75 * cannot be null unless methods in BasicAttribute that use attrID
79 protected String attrID; field in class:BasicAttribute
99 attr = new BasicAttribute(attrID, ordered);
140 if (attrID.equals(target.getID()) &&
182 int hash = attrID.hashCode();
213 StringBuffer answer = new StringBuffer(attrID + ": ");
256 attrID = id;
310 return attrID;
503 s.defaultWriteObject(); // write out the attrID
515 s.defaultReadObject(); // read in the attrID
[all...]
/openjdk7/jdk/test/sun/security/krb5/config/
H A DNamingManager.java50 public Attribute get(String attrID) {
51 BasicAttribute ba = new BasicAttribute(attrID);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DSearchFilter.java261 private String attrID; field in class:SearchFilter.AtomicFilter
281 attrID = SearchFilter.this.relSubstring(0, i-1);
288 attrID = SearchFilter.this.relSubstring(0, i-1);
295 attrID = SearchFilter.this.relSubstring(0, i-1);
306 attrID = SearchFilter.this.relSubstring(0,i);
311 attrID = attrID.trim();
328 if(debug) {System.out.println("AtomicFilter: " + attrID + "=" +
336 Attribute attr = targetAttrs.get(attrID);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapAttribute.java56 LdapAttribute attr = new LdapAttribute(this.attrID, baseCtx, rdn);
/openjdk7/jdk/src/share/classes/sun/net/spi/nameservice/dns/
H A DDNSNameService.java194 String attrID = attr.getID();
202 if (attrID.equals("CNAME")) {

Completed in 50 milliseconds