Searched refs:entryID (Results 1 - 25 of 156) sorted by relevance

1234567

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DRemoveEntry.java45 * <attribute name="entryID" type="{urn:liberty:disco:2003-08}IDReferenceType" />
55 private String entryID = null; field in class:RemoveEntry
59 * @param entryID entry ID to be removed
61 public RemoveEntry (String entryID) { argument
62 this.entryID = entryID;
72 return entryID;
78 * @param entryID entry ID to be removed.
81 public void setEntryID(String entryID) { argument
82 this.entryID
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/
H A DRemoveEntry.java45 * <attribute name="entryID" type="{urn:liberty:disco:2003-08}IDReferenceType" />
55 private String entryID = null; field in class:RemoveEntry
59 * @param entryID entry ID to be removed
61 public RemoveEntry (String entryID) { argument
62 this.entryID = entryID;
72 return entryID;
78 * @param entryID entry ID to be removed.
81 public void setEntryID(String entryID) { argument
82 this.entryID
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DCacheEntry.java48 private final long entryID; field in class:CacheEntry
55 * @param entryID The entry ID for this cache entry.
57 public CacheEntry(Entry entry, String backendID, long entryID) argument
61 this.entryID = entryID;
91 return entryID;
113 return (int) entryID;
145 return e.entryID == entryID && e.entry.equals(entry);
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DCacheEntry.java54 private long entryID; field in class:CacheEntry
63 * @param entryID The entry ID for this cache entry.
65 public CacheEntry(Entry entry, Backend backend, long entryID) argument
69 this.entryID = entryID;
129 return entryID;
137 * @param entryID The entryID for this cache entry.
139 public void setEntryID(long entryID) argument
141 this.entryID
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DCacheEntry.java53 private long entryID; field in class:CacheEntry
62 * @param entryID The entry ID for this cache entry.
64 public CacheEntry(Entry entry, Backend backend, long entryID) argument
68 this.entryID = entryID;
128 return entryID;
136 * @param entryID The entryID for this cache entry.
138 public void setEntryID(long entryID) argument
140 this.entryID
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DCacheEntry.java54 private long entryID; field in class:CacheEntry
63 * @param entryID The entry ID for this cache entry.
65 public CacheEntry(Entry entry, Backend backend, long entryID) argument
69 this.entryID = entryID;
129 return entryID;
137 * @param entryID The entryID for this cache entry.
139 public void setEntryID(long entryID) argument
141 this.entryID
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DCacheEntry.java54 private long entryID; field in class:CacheEntry
63 * @param entryID The entry ID for this cache entry.
65 public CacheEntry(Entry entry, Backend backend, long entryID) argument
69 this.entryID = entryID;
129 return entryID;
137 * @param entryID The entryID for this cache entry.
139 public void setEntryID(long entryID) argument
141 this.entryID
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DCacheEntry.java53 private long entryID; field in class:CacheEntry
62 * @param entryID The entry ID for this cache entry.
64 public CacheEntry(Entry entry, Backend backend, long entryID) argument
68 this.entryID = entryID;
128 return entryID;
136 * @param entryID The entryID for this cache entry.
138 public void setEntryID(long entryID) argument
140 this.entryID
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DID2ChildrenCount.java77 * Implementation note: this method accepts a {@code null} entryID in order to eliminate null checks in client code.
82 * @param entryID The entryID identifying to the counter, which may be
86 void updateCount(final WriteableTransaction txn, final EntryID entryID, final long delta) { argument
87 if (entryID != null)
89 addToCounter(txn, entryID, delta);
102 private void addToCounter(WriteableTransaction txn, EntryID entryID, final long delta) argument
104 counter.addCount(txn, toKey(entryID), delta);
107 void importPut(Importer importer, EntryID entryID, long total) argument
109 Reject.ifTrue(entryID
118 importPut0(Importer importer, EntryID entryID, final long delta) argument
150 getCount(ReadableTransaction txn, EntryID entryID) argument
171 removeCount(final WriteableTransaction txn, final EntryID entryID) argument
175 toKey(EntryID entryID) argument
[all...]
H A DIndexBuffer.java60 void put(Index index, ByteString key, EntryID entryID); argument
66 void remove(Index index, ByteString key, EntryID entryID); argument
104 void addEntryID(EntryID entryID) argument
106 if (!remove(deletedEntryIDs, entryID))
112 this.addedEntryIDs.add(entryID);
116 void deleteEntryID(EntryID entryID) argument
118 if (!remove(addedEntryIDs, entryID))
124 this.deletedEntryIDs.add(entryID);
128 private static boolean remove(EntryIDSet entryIDs, EntryID entryID) argument
130 return entryIDs != null ? entryIDs.remove(entryID)
236 put(Index index, ByteString key, EntryID entryID) argument
254 remove(Index index, ByteString key, EntryID entryID) argument
295 put(Index index, ByteString key, EntryID entryID) argument
326 remove(Index index, ByteString key, EntryID entryID) argument
340 newImportIndexBuffer(WriteableTransaction txn, EntryID entryID) argument
383 put(Index index, ByteString key, EntryID entryID) argument
398 remove(Index index, ByteString key, EntryID entryID) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DNullIndex.java78 public boolean insertID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
88 public boolean insertID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
144 public boolean removeID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
154 public void removeID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
165 public void delete(Transaction txn, Set<byte[]> keySet, EntryID entryID) argument
187 EntryID entryID) throws DatabaseException
250 public boolean addEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
261 public boolean addEntry(Transaction txn, EntryID entryID, Entry entry) argument
272 public void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
283 public void removeEntry(Transaction txn, EntryID entryID, Entr argument
186 containsID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
294 modifyEntry(Transaction txn, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
305 modifyEntry(IndexBuffer buffer, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
[all...]
H A DSortValues.java57 private EntryID entryID; field in class:SortValues
67 * @param entryID The entry ID for the entry associated with this set of
72 public SortValues(EntryID entryID, AttributeValue[] values, argument
75 this.entryID = entryID;
83 * @param entryID The entry ID for the entry associated with this set of
89 public SortValues(EntryID entryID, Entry entry, SortOrder sortOrder) argument
91 this.entryID = entryID;
164 long idDifference = (entryID
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DNullIndex.java79 public boolean insertID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
89 public boolean insertID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
145 public boolean removeID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
155 public void removeID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
166 public void delete(Transaction txn, Set<byte[]> keySet, EntryID entryID) argument
188 EntryID entryID) throws DatabaseException
251 public boolean addEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
262 public boolean addEntry(Transaction txn, EntryID entryID, Entry entry) argument
273 public void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
284 public void removeEntry(Transaction txn, EntryID entryID, Entr argument
187 containsID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
295 modifyEntry(Transaction txn, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
306 modifyEntry(IndexBuffer buffer, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
[all...]
H A DSortValues.java58 private EntryID entryID; field in class:SortValues
68 * @param entryID The entry ID for the entry associated with this set of
73 public SortValues(EntryID entryID, AttributeValue[] values, argument
76 this.entryID = entryID;
84 * @param entryID The entry ID for the entry associated with this set of
90 public SortValues(EntryID entryID, Entry entry, SortOrder sortOrder) argument
92 this.entryID = entryID;
165 long idDifference = (entryID
[all...]
H A DIndexBuilder.java52 * @param entryID The entry ID.
59 void processEntry(Entry oldEntry, Entry newEntry, EntryID entryID) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DNullIndex.java79 public boolean insertID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
89 public boolean insertID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
145 public boolean removeID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
155 public void removeID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
166 public void delete(Transaction txn, Set<byte[]> keySet, EntryID entryID) argument
188 EntryID entryID) throws DatabaseException
251 public boolean addEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
262 public boolean addEntry(Transaction txn, EntryID entryID, Entry entry) argument
273 public void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
284 public void removeEntry(Transaction txn, EntryID entryID, Entr argument
187 containsID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
295 modifyEntry(Transaction txn, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
306 modifyEntry(IndexBuffer buffer, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
[all...]
H A DSortValues.java58 private EntryID entryID; field in class:SortValues
68 * @param entryID The entry ID for the entry associated with this set of
73 public SortValues(EntryID entryID, AttributeValue[] values, argument
76 this.entryID = entryID;
84 * @param entryID The entry ID for the entry associated with this set of
90 public SortValues(EntryID entryID, Entry entry, SortOrder sortOrder) argument
92 this.entryID = entryID;
165 long idDifference = (entryID
[all...]
H A DIndexBuilder.java52 * @param entryID The entry ID.
59 void processEntry(Entry oldEntry, Entry newEntry, EntryID entryID) argument
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DNullIndex.java78 public boolean insertID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
88 public boolean insertID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
144 public boolean removeID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
154 public void removeID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
165 public void delete(Transaction txn, Set<byte[]> keySet, EntryID entryID) argument
187 EntryID entryID) throws DatabaseException
250 public boolean addEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
261 public boolean addEntry(Transaction txn, EntryID entryID, Entry entry) argument
272 public void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
283 public void removeEntry(Transaction txn, EntryID entryID, Entr argument
186 containsID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
294 modifyEntry(Transaction txn, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
305 modifyEntry(IndexBuffer buffer, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
[all...]
H A DSortValues.java57 private EntryID entryID; field in class:SortValues
67 * @param entryID The entry ID for the entry associated with this set of
72 public SortValues(EntryID entryID, AttributeValue[] values, argument
75 this.entryID = entryID;
83 * @param entryID The entry ID for the entry associated with this set of
89 public SortValues(EntryID entryID, Entry entry, SortOrder sortOrder) argument
91 this.entryID = entryID;
164 long idDifference = (entryID
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DNullIndex.java79 public boolean insertID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
89 public boolean insertID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
145 public boolean removeID(IndexBuffer buffer, byte[] keyBytes, EntryID entryID) argument
155 public void removeID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
166 public void delete(Transaction txn, Set<byte[]> keySet, EntryID entryID) argument
188 EntryID entryID) throws DatabaseException
251 public boolean addEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
262 public boolean addEntry(Transaction txn, EntryID entryID, Entry entry) argument
273 public void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry) argument
284 public void removeEntry(Transaction txn, EntryID entryID, Entr argument
187 containsID(Transaction txn, DatabaseEntry key, EntryID entryID) argument
295 modifyEntry(Transaction txn, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
306 modifyEntry(IndexBuffer buffer, EntryID entryID, Entry oldEntry, Entry newEntry, List<Modification> mods) argument
[all...]
H A DSortValues.java58 private EntryID entryID; field in class:SortValues
68 * @param entryID The entry ID for the entry associated with this set of
73 public SortValues(EntryID entryID, AttributeValue[] values, argument
76 this.entryID = entryID;
84 * @param entryID The entry ID for the entry associated with this set of
90 public SortValues(EntryID entryID, Entry entry, SortOrder sortOrder) argument
92 this.entryID = entryID;
165 long idDifference = (entryID
[all...]
H A DIndexBuilder.java52 * @param entryID The entry ID.
59 void processEntry(Entry oldEntry, Entry newEntry, EntryID entryID) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DDefaultEntryCache.java143 public Entry getEntry(Backend backend, long entryID) argument
147 Entry entry = entryCache.getEntry(backend, entryID);
196 long entryID = entryCache.getEntryID(entryDN);
197 if (entryID != -1)
199 return entryID;
211 public DN getEntryDN(Backend backend, long entryID) argument
215 DN entryDN = entryCache.getEntryDN(backend, entryID);
230 public void putEntry(Entry entry, Backend backend, long entryID) argument
237 backend, entryID);
249 public boolean putEntryIfAbsent(Entry entry, Backend backend, long entryID) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DDefaultEntryCache.java142 public Entry getEntry(Backend backend, long entryID) argument
146 Entry entry = entryCache.getEntry(backend, entryID);
195 long entryID = entryCache.getEntryID(entryDN);
196 if (entryID != -1)
198 return entryID;
210 public DN getEntryDN(Backend backend, long entryID) argument
214 DN entryDN = entryCache.getEntryDN(backend, entryID);
229 public void putEntry(Entry entry, Backend backend, long entryID) argument
236 backend, entryID);
248 public boolean putEntryIfAbsent(Entry entry, Backend backend, long entryID) argument
[all...]

Completed in 35 milliseconds

1234567