Searched defs:attributeType (Results 201 - 225 of 465) sorted by relevance

1234567891011>>

/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DVirtualAttribute.java58 private final AttributeType attributeType; field in class:VirtualAttribute
74 * @param attributeType
82 public VirtualAttribute(AttributeType attributeType, Entry entry, argument
85 this.attributeType = attributeType;
129 return attributeType;
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DWorkflowConfigurationTest.java249 * @param attributeType the type of the attribute to modify
255 String attributeType,
261 LDAPAttribute ldapAttr = new LDAPAttribute(attributeType, ldapValues);
252 getModifyOperation( String entryDN, ModificationType modType, String attributeType, String attributeValue) argument
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DWorkflowConfigurationTest.java248 * @param attributeType the type of the attribute to modify
254 String attributeType,
260 LDAPAttribute ldapAttr = new LDAPAttribute(attributeType, ldapValues);
251 getModifyOperation( String entryDN, ModificationType modType, String attributeType, String attributeValue) argument
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DWorkflowConfigurationTest.java249 * @param attributeType the type of the attribute to modify
255 String attributeType,
261 LDAPAttribute ldapAttr = new LDAPAttribute(attributeType, ldapValues);
252 getModifyOperation( String entryDN, ModificationType modType, String attributeType, String attributeValue) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DAddOperation.java118 * @param attributeType The attribute type for the attribute.
121 public abstract void setAttribute(AttributeType attributeType, argument
131 * @param attributeType The attribute tyep for the attribute to remove.
133 public abstract void removeAttribute(AttributeType attributeType); argument
H A DAddOperationWrapper.java140 public void removeAttribute(AttributeType attributeType) argument
142 getOperation().removeAttribute(attributeType);
158 public void setAttribute(AttributeType attributeType, argument
161 getOperation().setAttribute(attributeType, attributeList);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DEntryDNVirtualAttributeProvider.java258 * @param attributeType The attribute type used to hold the entryDN value.
266 private boolean isSearchable(AttributeType attributeType, SearchFilter filter, argument
279 if (isSearchable(attributeType, f, depth+1))
294 if (! isSearchable(attributeType, f, depth+1))
302 return filter.getAttributeType().equals(attributeType);
360 * @param attributeType The attribute type holding the entryDN value.
365 private void extractDNs(AttributeType attributeType, SearchFilter filter, argument
374 extractDNs(attributeType, f, dnSet);
379 if (filter.getAttributeType().equals(attributeType))
H A DIsMemberOfVirtualAttributeProvider.java331 * @param attributeType The attribute type used to hold the entryDN value.
339 private boolean isSearchable(AttributeType attributeType, SearchFilter filter, argument
352 if (isSearchable(attributeType, f, depth+1))
360 return filter.getAttributeType().equals(attributeType);
420 * @param attributeType The attribute type holding the entryDN value.
426 private Group<?> extractGroup(AttributeType attributeType, argument
434 Group<?> g = extractGroup(attributeType, f);
443 if (filter.getAttributeType().equals(attributeType))
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/
H A DLDAPCompare.java121 * @param attributeType The attribute type to compare.
132 public int readAndExecute(LDAPConnection connection, String attributeType, argument
141 executeCompare(connection, attributeType, attributeVal, line,
154 * @param attributeType The attribute type to compare.
165 public int readAndExecute(LDAPConnection connection, String attributeType, argument
177 executeCompare(connection, attributeType, attributeVal, line,
216 * @param attributeType The attribute type to compare.
227 private int executeCompare(LDAPConnection connection, String attributeType, argument
237 attributeType, attrValOctetStr);
243 attributeType, Strin
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/makeldif/
H A DBranch.java351 * @param attributeType The attribute type for which to make the
357 public boolean hasAttribute(AttributeType attributeType) argument
359 if (branchDN.getRDN().hasAttributeType(attributeType))
366 if (l.getAttributeType().equals(attributeType))
H A DTemplate.java306 * @param attributeType The attribute type for which to make the
313 public boolean hasAttribute(AttributeType attributeType) argument
317 if (l.getAttributeType().equals(attributeType))
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DVirtualAttribute.java58 private final AttributeType attributeType; field in class:VirtualAttribute
74 * @param attributeType
82 public VirtualAttribute(AttributeType attributeType, Entry entry, argument
85 this.attributeType = attributeType;
129 return attributeType;
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DUserAttr.java393 * @param attributeType The attribute type to use in the evaluation.
397 AttributeType attributeType) {
402 attributeType);
406 result=GroupDN.evaluate(e, evalCtx, attributeType, null);
396 evalEntryAttr(Entry e, AciEvalContext evalCtx, AttributeType attributeType) argument
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DSubstringIndexer.java57 private AttributeType attributeType; field in class:SubstringIndexer
66 * @param attributeType The attribute type for which an indexer is
70 public SubstringIndexer(AttributeType attributeType, int substringLength) argument
72 this.attributeType = attributeType;
83 return attributeType.getNameOrOID() + ".substring";
106 entry.getAttribute(attributeType);
124 List<Attribute> newAttributes = newEntry.getAttribute(attributeType, true);
125 List<Attribute> oldAttributes = oldEntry.getAttribute(attributeType, true);
146 List<Attribute> newAttributes = newEntry.getAttribute(attributeType, tru
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DAddOperationWrapper.java111 public void removeAttribute(AttributeType attributeType) argument
113 getOperation().removeAttribute(attributeType);
125 public void setAttribute(AttributeType attributeType, argument
128 getOperation().setAttribute(attributeType, attributeList);
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DEntryDNVirtualAttributeProvider.java199 * @param attributeType The attribute type used to hold the entryDN value.
207 private boolean isSearchable(AttributeType attributeType, SearchFilter filter, argument
220 if (isSearchable(attributeType, f, depth+1))
235 if (! isSearchable(attributeType, f, depth+1))
243 return filter.getAttributeType().equals(attributeType);
297 * @param attributeType The attribute type holding the entryDN value.
302 private void extractDNs(AttributeType attributeType, SearchFilter filter, argument
311 extractDNs(attributeType, f, dnSet);
316 if (filter.getAttributeType().equals(attributeType))
H A DIsMemberOfVirtualAttributeProvider.java258 * @param attributeType The attribute type used to hold the entryDN value.
266 private boolean isSearchable(AttributeType attributeType, SearchFilter filter, argument
279 if (isSearchable(attributeType, f, depth+1))
287 return filter.getAttributeType().equals(attributeType);
389 * @param attributeType The attribute type holding the entryDN value.
395 private Group<?> extractGroup(AttributeType attributeType, argument
403 Group<?> g = extractGroup(attributeType, f);
412 if (filter.getAttributeType().equals(attributeType))
/forgerock/opendj2-hg/src/server/org/opends/server/tools/
H A DLDAPCompare.java120 * @param attributeType The attribute type to compare.
131 public int readAndExecute(LDAPConnection connection, String attributeType, argument
140 executeCompare(connection, attributeType, attributeVal, line,
153 * @param attributeType The attribute type to compare.
164 public int readAndExecute(LDAPConnection connection, String attributeType, argument
176 executeCompare(connection, attributeType, attributeVal, line,
215 * @param attributeType The attribute type to compare.
226 private int executeCompare(LDAPConnection connection, String attributeType, argument
236 attributeType, attrValOctetStr);
242 attributeType, Strin
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/makeldif/
H A DBranch.java350 * @param attributeType The attribute type for which to make the
356 public boolean hasAttribute(AttributeType attributeType) argument
358 if (branchDN.getRDN().hasAttributeType(attributeType))
365 if (l.getAttributeType().equals(attributeType))
H A DTemplate.java305 * @param attributeType The attribute type for which to make the
312 public boolean hasAttribute(AttributeType attributeType) argument
316 if (l.getAttributeType().equals(attributeType))
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DVirtualAttribute.java57 private final AttributeType attributeType; field in class:VirtualAttribute
73 * @param attributeType
81 public VirtualAttribute(AttributeType attributeType, Entry entry, argument
84 this.attributeType = attributeType;
128 return attributeType;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DUserAttr.java399 * @param attributeType The attribute type to use in the evaluation.
403 AttributeType attributeType) {
408 attributeType);
412 result=GroupDN.evaluate(e, evalCtx, attributeType, null);
402 evalEntryAttr(Entry e, AciEvalContext evalCtx, AttributeType attributeType) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DSubstringIndexer.java58 private AttributeType attributeType; field in class:SubstringIndexer
67 * @param attributeType The attribute type for which an indexer is
71 public SubstringIndexer(AttributeType attributeType, int substringLength) argument
73 this.attributeType = attributeType;
84 return attributeType.getNameOrOID() + ".substring";
107 entry.getAttribute(attributeType);
125 List<Attribute> newAttributes = newEntry.getAttribute(attributeType, true);
126 List<Attribute> oldAttributes = oldEntry.getAttribute(attributeType, true);
147 List<Attribute> newAttributes = newEntry.getAttribute(attributeType, tru
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DJavaBeanAdapter.java105 Class<?> attributeType = tokenField.getAttributeType();
108 if (converterType.equals(Converter.IdentityConverter.class) && !beanFieldType.equals(attributeType)) {
112 validateConverterType(attributeType, beanFieldType, converterType);
136 private void validateConverterType(Class<?> attributeType, Class<?> beanFieldType, Class<? extends Converter> converterType) { argument
150 if (!(isMatchingClassType(attributeType, to) || isMatchingArrayType(attributeType, to)) ||
154 attributeType.getName());
161 private boolean isMatchingClassType(Class<?> attributeType, java.lang.reflect.Type to) { argument
162 return !attributeType.isArray() && to instanceof Class && ((Class) to).isAssignableFrom(attributeType);
165 isMatchingArrayType(Class<?> attributeType, java.lang.reflect.Type to) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DUserAttr.java353 * @param attributeType The attribute type to use in the evaluation.
357 AttributeType attributeType) {
362 attributeType);
366 result=GroupDN.evaluate(e, evalCtx, attributeType, null);
356 evalEntryAttr(Entry e, AciEvalContext evalCtx, AttributeType attributeType) argument

Completed in 122 milliseconds

1234567891011>>