Searched defs:keys (Results 1 - 25 of 177) sorted by relevance

12345678

/forgerock/opendj2/src/server/org/opends/server/api/
H A DExtensibleIndexer.java40 * this interface to create the keys for an attribute value.
77 * Generates the set of index keys for an attribute.
80 * The attribute value for which keys are required.
81 * @param keys
82 * The set into which the generated keys will be inserted.
85 Set<byte[]> keys);
90 * Generates a map of index keys and a boolean flag indicating
94 * The attribute for which keys are required.
96 * A map containing the keys and a boolean. Keys
102 * <code>true</code> if generated keys shoul
84 getKeys(AttributeValue value, Set<byte[]> keys) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DIndexer.java38 * This class attempts to abstract the generation and comparison of keys
44 * Get the comparator that must be used to compare index keys
52 * Generate the set of index keys for an entry.
55 * @param keys The set into which the generated keys will be inserted.
57 public abstract void indexEntry(Entry entry, Set<byte[]> keys); argument
60 * Generate the set of index keys to be added and the set of index keys
65 * @param modifiedKeys The map into which the modified keys will be inserted.
71 * Generate the set of index keys t
[all...]
H A DPresenceIndexer.java46 * The comparator for index keys generated by this class.
53 * generate index keys.
77 * Get the comparator that must be used to compare index keys
90 * Generate the set of index keys for an entry.
93 * @param keys The set into which the generated keys will be inserted.
95 public void indexEntry(Entry entry, Set<byte[]> keys) argument
103 keys.add(AttributeIndex.presenceKey.getData());
111 * Generate the set of index keys to be added and the set of index keys
[all...]
H A DApproximateIndexer.java46 * The comparator for index keys generated by this class.
58 * generate index keys.
86 * Get the comparator that must be used to compare index keys
97 * Generate the set of index keys for an entry.
100 * @param keys The set into which the generated keys will be inserted.
102 public void indexEntry(Entry entry, Set<byte[]> keys) argument
108 indexAttribute(attrList, keys);
113 * Generate the set of index keys to be added and the set of index keys
155 indexAttribute(List<Attribute> attrList, Set<byte[]> keys) argument
[all...]
H A DEqualityIndexer.java54 * The comparator for index keys generated by this class.
61 * generate index keys.
87 * Get the comparator that must be used to compare index keys
100 * Generate the set of index keys for an entry.
103 * @param keys The set into which the generated keys will be inserted.
105 public void indexEntry(Entry entry, Set<byte[]> keys) argument
111 indexAttribute(attrList, keys);
118 * Generate the set of index keys to be added and the set of index keys
163 indexAttribute(List<Attribute> attrList, Set<byte[]> keys) argument
[all...]
H A DJEExtensibleIndexer.java51 * The comparator for index keys generated by this class.
60 * generate index keys.
67 * The extensible indexer which will generate the keys
107 * Gets the comparator that must be used to compare index keys
124 public void indexEntry(Entry entry, Set<byte[]> keys) argument
130 indexAttribute(attrList, keys);
171 * Generates the set of extensible index keys for an attribute.
172 * @param attrList The attribute for which substring keys are required.
173 * @param keys The set into which the generated keys wil
175 indexAttribute(List<Attribute> attrList, Set<byte[]> keys) argument
[all...]
H A DOrderingIndexer.java56 * generate index keys.
62 * comparator for the index keys generated by this class.
89 * Get the comparator that must be used to compare index keys
100 * Generate the set of index keys for an entry.
103 * @param keys The set into which the generated keys will be inserted.
105 public void indexEntry(Entry entry, Set<byte[]> keys) argument
111 indexAttribute(attrList, keys);
116 * Generate the set of index keys to be added and the set of index keys
160 indexAttribute(List<Attribute> attrList, Set<byte[]> keys) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DExtensibleIndexer.java41 * this interface to create the keys for an attribute value.
78 * Generates the set of index keys for an attribute.
81 * The attribute value for which keys are required.
82 * @param keys
83 * The set into which the generated keys will be inserted.
86 Set<byte[]> keys);
91 * Generates a map of index keys and a boolean flag indicating
95 * The attribute for which keys are required.
97 * A map containing the keys and a boolean. Keys
103 * <code>true</code> if generated keys shoul
85 getKeys(AttributeValue value, Set<byte[]> keys) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DIndexer.java39 * This class attempts to abstract the generation and comparison of keys
45 * Get the comparator that must be used to compare index keys
53 * Generate the set of index keys for an entry.
56 * @param keys The set into which the generated keys will be inserted.
58 public abstract void indexEntry(Entry entry, Set<byte[]> keys); argument
61 * Generate the set of index keys to be added and the set of index keys
66 * @param modifiedKeys The map into which the modified keys will be inserted.
72 * Generate the set of index keys t
[all...]
H A DPresenceIndexer.java47 * The comparator for index keys generated by this class.
54 * generate index keys.
78 * Get the comparator that must be used to compare index keys
91 * Generate the set of index keys for an entry.
94 * @param keys The set into which the generated keys will be inserted.
96 public void indexEntry(Entry entry, Set<byte[]> keys) argument
104 keys.add(AttributeIndex.presenceKey.getData());
112 * Generate the set of index keys to be added and the set of index keys
[all...]
H A DApproximateIndexer.java47 * The comparator for index keys generated by this class.
59 * generate index keys.
87 * Get the comparator that must be used to compare index keys
98 * Generate the set of index keys for an entry.
101 * @param keys The set into which the generated keys will be inserted.
103 public void indexEntry(Entry entry, Set<byte[]> keys) argument
109 indexAttribute(attrList, keys);
114 * Generate the set of index keys to be added and the set of index keys
156 indexAttribute(List<Attribute> attrList, Set<byte[]> keys) argument
[all...]
H A DEqualityIndexer.java55 * The comparator for index keys generated by this class.
62 * generate index keys.
88 * Get the comparator that must be used to compare index keys
101 * Generate the set of index keys for an entry.
104 * @param keys The set into which the generated keys will be inserted.
106 public void indexEntry(Entry entry, Set<byte[]> keys) argument
112 indexAttribute(attrList, keys);
119 * Generate the set of index keys to be added and the set of index keys
164 indexAttribute(List<Attribute> attrList, Set<byte[]> keys) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DExtensibleIndexer.java41 * this interface to create the keys for an attribute value.
78 * Generates the set of index keys for an attribute.
81 * The attribute value for which keys are required.
82 * @param keys
83 * The set into which the generated keys will be inserted.
86 Set<byte[]> keys);
91 * Generates a map of index keys and a boolean flag indicating
95 * The attribute for which keys are required.
97 * A map containing the keys and a boolean. Keys
103 * <code>true</code> if generated keys shoul
85 getKeys(AttributeValue value, Set<byte[]> keys) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DIndexer.java39 * This class attempts to abstract the generation and comparison of keys
45 * Get the comparator that must be used to compare index keys
53 * Generate the set of index keys for an entry.
56 * @param keys The set into which the generated keys will be inserted.
58 public abstract void indexEntry(Entry entry, Set<byte[]> keys); argument
61 * Generate the set of index keys to be added and the set of index keys
66 * @param modifiedKeys The map into which the modified keys will be inserted.
72 * Generate the set of index keys t
[all...]
H A DPresenceIndexer.java47 * The comparator for index keys generated by this class.
54 * generate index keys.
78 * Get the comparator that must be used to compare index keys
91 * Generate the set of index keys for an entry.
94 * @param keys The set into which the generated keys will be inserted.
96 public void indexEntry(Entry entry, Set<byte[]> keys) argument
104 keys.add(AttributeIndex.presenceKey.getData());
112 * Generate the set of index keys to be added and the set of index keys
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DExtensibleIndexer.java40 * this interface to create the keys for an attribute value.
77 * Generates the set of index keys for an attribute.
80 * The attribute value for which keys are required.
81 * @param keys
82 * The set into which the generated keys will be inserted.
85 Set<byte[]> keys);
90 * Generates a map of index keys and a boolean flag indicating
94 * The attribute for which keys are required.
96 * A map containing the keys and a boolean. Keys
102 * <code>true</code> if generated keys shoul
84 getKeys(AttributeValue value, Set<byte[]> keys) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DIndexer.java38 * This class attempts to abstract the generation and comparison of keys
44 * Get the comparator that must be used to compare index keys
52 * Generate the set of index keys for an entry.
55 * @param keys The set into which the generated keys will be inserted.
57 public abstract void indexEntry(Entry entry, Set<byte[]> keys); argument
60 * Generate the set of index keys to be added and the set of index keys
65 * @param modifiedKeys The map into which the modified keys will be inserted.
71 * Generate the set of index keys t
[all...]
H A DPresenceIndexer.java46 * The comparator for index keys generated by this class.
53 * generate index keys.
77 * Get the comparator that must be used to compare index keys
90 * Generate the set of index keys for an entry.
93 * @param keys The set into which the generated keys will be inserted.
95 public void indexEntry(Entry entry, Set<byte[]> keys) argument
103 keys.add(AttributeIndex.presenceKey.getData());
111 * Generate the set of index keys to be added and the set of index keys
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DExtensibleIndexer.java41 * this interface to create the keys for an attribute value.
78 * Generates the set of index keys for an attribute.
81 * The attribute value for which keys are required.
82 * @param keys
83 * The set into which the generated keys will be inserted.
86 Set<byte[]> keys);
91 * Generates a map of index keys and a boolean flag indicating
95 * The attribute for which keys are required.
97 * A map containing the keys and a boolean. Keys
103 * <code>true</code> if generated keys shoul
85 getKeys(AttributeValue value, Set<byte[]> keys) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DIndexer.java39 * This class attempts to abstract the generation and comparison of keys
45 * Get the comparator that must be used to compare index keys
53 * Generate the set of index keys for an entry.
56 * @param keys The set into which the generated keys will be inserted.
58 public abstract void indexEntry(Entry entry, Set<byte[]> keys); argument
61 * Generate the set of index keys to be added and the set of index keys
66 * @param modifiedKeys The map into which the modified keys will be inserted.
72 * Generate the set of index keys t
[all...]
H A DPresenceIndexer.java47 * The comparator for index keys generated by this class.
54 * generate index keys.
78 * Get the comparator that must be used to compare index keys
91 * Generate the set of index keys for an entry.
94 * @param keys The set into which the generated keys will be inserted.
96 public void indexEntry(Entry entry, Set<byte[]> keys) argument
104 keys.add(AttributeIndex.presenceKey.getData());
112 * Generate the set of index keys to be added and the set of index keys
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/servlet/
H A DPOSTCleanUpRunnable.java47 private Set keys; field in class:POSTCleanUpRunnable
59 keys = new HashSet();
63 synchronized (keys) {
64 return keys.add(obj);
69 synchronized (keys) {
70 return keys.remove(obj);
85 synchronized (keys) {
86 for (Iterator iter = keys.iterator(); iter.hasNext();) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/servlet/
H A DPOSTCleanUpRunnable.java50 private Set keys; field in class:POSTCleanUpRunnable
62 keys = new HashSet();
66 synchronized (keys) {
67 return keys.add(obj);
72 synchronized (keys) {
73 return keys.remove(obj);
88 synchronized (keys) {
89 for (Iterator iter = keys.iterator(); iter.hasNext();) {
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java80 // The current set of selection keys.
81 private volatile SelectionKey[] keys = new SelectionKey[0]; field in class:LDAPRequestHandler
285 // Create a copy of the selection keys which can be used in a
288 keys = selector.keys().toArray(new SelectionKey[0]);
419 SelectionKey[] keyArray = selector.keys().toArray(new SelectionKey[0]);
535 new ArrayList<LDAPClientConnection>(keys.length);
536 for (SelectionKey key : keys)
/forgerock/opendj2/src/server/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java79 // The current set of selection keys.
80 private volatile SelectionKey[] keys = new SelectionKey[0]; field in class:LDAPRequestHandler
284 // Create a copy of the selection keys which can be used in a
287 keys = selector.keys().toArray(new SelectionKey[0]);
418 SelectionKey[] keyArray = selector.keys().toArray(new SelectionKey[0]);
534 new ArrayList<LDAPClientConnection>(keys.length);
535 for (SelectionKey key : keys)

Completed in 138 milliseconds

12345678