Searched refs:requestedAttributes (Results 1 - 25 of 75) sorted by relevance

123

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/ldap/
H A DEntryStringConverter.java30 public String convert(Entry entry, String[] requestedAttributes) { argument
31 Reject.ifTrue(requestedAttributes == null || requestedAttributes.length != 1);
32 return entry.getAttribute(requestedAttributes[0]).firstValueAsString();
H A DEntryConverter.java29 * @param requestedAttributes The list of requested attributes, or null.
32 T convert(Entry entry, String[] requestedAttributes); argument
H A DEntryPartialTokenConverter.java40 public PartialToken convert(Entry entry, String[] requestedAttributes) { argument
H A DEntryTokenConverter.java41 public Token convert(Entry entry, String[] requestedAttributes) { argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/ldap/
H A DEntryStringConverter.java30 public String convert(Entry entry, String[] requestedAttributes) { argument
31 Reject.ifTrue(requestedAttributes == null || requestedAttributes.length != 1);
32 return entry.getAttribute(requestedAttributes[0]).firstValueAsString();
H A DEntryConverter.java29 * @param requestedAttributes The list of requested attributes, or null.
32 T convert(Entry entry, String[] requestedAttributes); argument
H A DEntryPartialTokenConverter.java40 public PartialToken convert(Entry entry, String[] requestedAttributes) { argument
H A DLdapQueryBuilder.java100 if (String.class.equals(returnType) && requestedAttributes.length != 1) {
117 .returnAttributes(requestedAttributes)
189 if (requestedAttributes.length == 0) {
192 attributes = requestedAttributes;
194 attributes = Arrays.copyOf(requestedAttributes, requestedAttributes.length + 1);
201 for (String attr : requestedAttributes) {
247 StringUtils.join(requestedAttributes, ", "));
298 results.add(converter.convert(entry, requestedAttributes));
H A DEntryTokenConverter.java41 public Token convert(Entry entry, String[] requestedAttributes) { argument
/forgerock/opendj2/src/server/org/opends/server/controls/
H A DLDAPPreReadRequestControl.java130 private Set<String> requestedAttributes; field in class:LDAPPreReadRequestControl
157 requestedAttributes = null;
214 if (requestedAttributes == null)
216 requestedAttributes = normalizedObjectClasses(rawAttributes);
218 return requestedAttributes;
H A DLDAPPostReadRequestControl.java130 private Set<String> requestedAttributes; field in class:LDAPPostReadRequestControl
157 requestedAttributes = null;
187 requestedAttributes = null;
244 if (requestedAttributes == null)
246 requestedAttributes = normalizedObjectClasses(rawAttributes);
248 return requestedAttributes;
/forgerock/opendj-b2.6/src/server/org/opends/server/controls/
H A DLDAPPreReadRequestControl.java131 private Set<String> requestedAttributes; field in class:LDAPPreReadRequestControl
158 requestedAttributes = null;
215 if (requestedAttributes == null)
217 requestedAttributes = normalizedObjectClasses(rawAttributes);
219 return requestedAttributes;
H A DLDAPPostReadRequestControl.java131 private Set<String> requestedAttributes; field in class:LDAPPostReadRequestControl
158 requestedAttributes = null;
188 requestedAttributes = null;
245 if (requestedAttributes == null)
247 requestedAttributes = normalizedObjectClasses(rawAttributes);
249 return requestedAttributes;
/forgerock/opendj2.6.2/src/server/org/opends/server/controls/
H A DLDAPPreReadRequestControl.java131 private Set<String> requestedAttributes; field in class:LDAPPreReadRequestControl
158 requestedAttributes = null;
215 if (requestedAttributes == null)
217 requestedAttributes = normalizedObjectClasses(rawAttributes);
219 return requestedAttributes;
H A DLDAPPostReadRequestControl.java131 private Set<String> requestedAttributes; field in class:LDAPPostReadRequestControl
158 requestedAttributes = null;
188 requestedAttributes = null;
245 if (requestedAttributes == null)
247 requestedAttributes = normalizedObjectClasses(rawAttributes);
249 return requestedAttributes;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/controls/
H A DLDAPPreReadRequestControl.java131 private Set<String> requestedAttributes; field in class:LDAPPreReadRequestControl
158 requestedAttributes = null;
215 if (requestedAttributes == null)
217 requestedAttributes = normalizedObjectClasses(rawAttributes);
219 return requestedAttributes;
H A DLDAPPostReadRequestControl.java131 private Set<String> requestedAttributes; field in class:LDAPPostReadRequestControl
158 requestedAttributes = null;
188 requestedAttributes = null;
245 if (requestedAttributes == null)
247 requestedAttributes = normalizedObjectClasses(rawAttributes);
249 return requestedAttributes;
/forgerock/opendj2-hg/src/server/org/opends/server/controls/
H A DLDAPPreReadRequestControl.java130 private Set<String> requestedAttributes; field in class:LDAPPreReadRequestControl
157 requestedAttributes = null;
214 if (requestedAttributes == null)
216 requestedAttributes = normalizedObjectClasses(rawAttributes);
218 return requestedAttributes;
H A DLDAPPostReadRequestControl.java130 private Set<String> requestedAttributes; field in class:LDAPPostReadRequestControl
157 requestedAttributes = null;
187 requestedAttributes = null;
244 if (requestedAttributes == null)
246 requestedAttributes = normalizedObjectClasses(rawAttributes);
248 return requestedAttributes;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/controls/
H A DLDAPPreReadRequestControl.java120 private Set<String> requestedAttributes; field in class:LDAPPreReadRequestControl
147 requestedAttributes = null;
204 if (requestedAttributes == null)
206 requestedAttributes = normalizedObjectClasses(rawAttributes);
208 return requestedAttributes;
H A DLDAPPostReadRequestControl.java120 private Set<String> requestedAttributes; field in class:LDAPPostReadRequestControl
147 requestedAttributes = null;
177 requestedAttributes = null;
234 if (requestedAttributes == null)
236 requestedAttributes = normalizedObjectClasses(rawAttributes);
238 return requestedAttributes;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/api/query/
H A DQueryBuilder.java45 protected String[] requestedAttributes = new String[]{}; field in class:QueryBuilder
128 requestedAttributes = fields.toArray(new String[fields.size()]);
181 if (!ArrayUtils.isEmpty(requestedAttributes)) {
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java78 private LinkedHashSet<String> requestedAttributes; field in class:ExactMatchIdentityMapper
138 requestedAttributes = new LinkedHashSet<String>(2);
139 requestedAttributes.add("*");
140 requestedAttributes.add("+");
216 false, filter, requestedAttributes);
H A DSubjectDNToUserAttributeCertificateMapper.java83 private LinkedHashSet<String> requestedAttributes; field in class:SubjectDNToUserAttributeCertificateMapper
136 requestedAttributes = new LinkedHashSet<String>(2);
137 requestedAttributes.add("*");
138 requestedAttributes.add("+");
222 false, filter, requestedAttributes);
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DExactMatchIdentityMapper.java77 private LinkedHashSet<String> requestedAttributes; field in class:ExactMatchIdentityMapper
137 requestedAttributes = new LinkedHashSet<String>(2);
138 requestedAttributes.add("*");
139 requestedAttributes.add("+");
215 false, filter, requestedAttributes);

Completed in 229 milliseconds

123