Searched refs:subtree (Results 1 - 25 of 95) sorted by relevance

1234

/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java438 public long numSubordinates(DN entryDN, boolean subtree) argument
447 if(!subtree)
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java392 public long numSubordinates(DN entryDN, boolean subtree) argument
401 if(!subtree)
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java438 public long numSubordinates(DN entryDN, boolean subtree) argument
447 if(!subtree)
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java392 public long numSubordinates(DN entryDN, boolean subtree) argument
401 if(!subtree)
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java411 public long numSubordinates(DN entryDN, boolean subtree) argument
420 if(!subtree)
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java383 private long numSubordinates(DN entryDN, boolean subtree) throws DirectoryException argument
391 if(!subtree)
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DLockManager.java53 * an implicit subtree read lock on the parent
54 * <li>deleting an entry: client code must acquire a subtree write lock for the target entry using
56 * <li>renaming an entry: client code must acquire a subtree write lock for the old entry, and a
57 * subtree write lock for the new entry using {@link #tryWriteLockSubtree(DN)}. Care should be taken
69 * the "subtree" lock and the second is the "entry" lock.
71 * In order to lock an entry for read or write a <b>subtree</b> read lock is first acquired on each
74 * write locking is performed by acquiring a <b>subtree</b> read lock on each of the parent entries
75 * from the root DN down to the immediate parent of the subtree to be locked. Then a <b>subtree</b>
76 * write lock is acquired for the target subtree
393 tryWriteLockSubtree(final DN subtree) argument
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/tree/
H A DSmsRouteTree.java232 SmsRouteTree subtree = new SmsRouteTreeBuilder(uriTemplate).supportGeneralActions(supportGeneralActions)
234 handlers.put(uriTemplate, subtree);
236 subtree.router.setDefaultRoute(handler);
238 subtree.router.addRoute(EQUALS, uriTemplate(""), handler);
240 return new Route(router.addRoute(STARTS_WITH, uriTemplate(uriTemplate), subtree), subtree, handler);
/forgerock/opendj2/src/server/org/opends/server/api/
H A DBackend.java275 * Indicates whether a subtree search using the provided filter
411 * @param subtree <code>true</code> to include all entries from the
423 public abstract long numSubordinates(DN entryDN, boolean subtree) argument
480 * subordinate entries (unless the backend supports a subtree delete
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DBackend.java275 * Indicates whether a subtree search using the provided filter
411 * @param subtree <code>true</code> to include all entries from the
423 public abstract long numSubordinates(DN entryDN, boolean subtree) argument
480 * subordinate entries (unless the backend supports a subtree delete
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsRequestHandler.java557 SmsRouteTree subtree = routeTree;
564 subtree = addRoute(schema, STARTS_WITH, path, handler, ignoredRoutes, routeTree, serviceRoutes);
571 subtree = addRoute(schema, EQUALS, path, handler, ignoredRoutes, routeTree, serviceRoutes);
576 addPaths(parentPath, schemaPath, schema, serviceRoutes, ignoredRoutes, subtree);
/forgerock/opendj2/src/server/org/opends/server/backends/
H A DMemoryBackend.java301 public synchronized long numSubordinates(DN entryDN, boolean subtree) argument
316 if(!subtree)
417 // Check to see if the entry contains a subtree delete control.
H A DNullBackend.java296 public long numSubordinates(DN entryDN, boolean subtree) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/
H A DMemoryBackend.java346 public synchronized long numSubordinates(DN entryDN, boolean subtree) argument
361 if(!subtree)
477 // Check to see if the entry contains a subtree delete control.
H A DNullBackend.java327 public long numSubordinates(DN entryDN, boolean subtree) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/
H A DMemoryBackend.java346 public synchronized long numSubordinates(DN entryDN, boolean subtree) argument
361 if(!subtree)
477 // Check to see if the entry contains a subtree delete control.
H A DNullBackend.java327 public long numSubordinates(DN entryDN, boolean subtree) argument
/forgerock/opendj2-hg/src/server/org/opends/server/backends/
H A DMemoryBackend.java301 public synchronized long numSubordinates(DN entryDN, boolean subtree) argument
316 if(!subtree)
417 // Check to see if the entry contains a subtree delete control.
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/
H A DMemoryBackend.java346 public synchronized long numSubordinates(DN entryDN, boolean subtree) argument
361 if(!subtree)
477 // Check to see if the entry contains a subtree delete control.
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DConfigurationHandler.java342 * @param subtree
350 public long numSubordinates(final DN entryDN, final boolean subtree) throws ConfigException argument
354 final SearchScope scope = subtree ? SearchScope.SUBORDINATES : SearchScope.SINGLE_LEVEL;
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/protocol/
H A DSynchronizationMsgTest.java280 boolean subtree)
287 if (subtree)
295 assertEquals(msg.isSubtreeDelete(), subtree);
308 assertEquals(generatedMsg.isSubtreeDelete(), subtree);
314 assertEquals(mod2.getRequestControl(SubtreeDeleteControl.DECODER) != null, subtree);
279 deleteMsgTest(String rawDN, List<Attribute> entryAttrList, boolean subtree) argument
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/protocol/
H A DSynchronizationMsgTest.java280 boolean subtree)
287 if (subtree)
295 assertEquals(msg.isSubtreeDelete(), subtree);
308 assertEquals(generatedMsg.isSubtreeDelete(), subtree);
314 assertEquals(mod2.getRequestControl(SubtreeDeleteControl.DECODER) != null, subtree);
279 deleteMsgTest(String rawDN, List<Attribute> entryAttrList, boolean subtree) argument
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/protocol/
H A DSynchronizationMsgTest.java281 boolean subtree)
288 if (subtree)
296 assertEquals(msg.isSubtreeDelete(), subtree);
309 assertEquals(generatedMsg.isSubtreeDelete(), subtree);
315 assertEquals(mod2.getRequestControl(SubtreeDeleteControl.DECODER) != null, subtree);
280 deleteMsgTest(String rawDN, List<Attribute> entryAttrList, boolean subtree) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DBackend.java295 * Indicates whether a subtree search using the provided filter
451 * @param subtree <code>true</code> to include all entries from the
463 public abstract long numSubordinates(DN entryDN, boolean subtree) argument
520 * subordinate entries (unless the backend supports a subtree delete
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DBackend.java295 * Indicates whether a subtree search using the provided filter
451 * @param subtree <code>true</code> to include all entries from the
463 public abstract long numSubordinates(DN entryDN, boolean subtree) argument
520 * subordinate entries (unless the backend supports a subtree delete

Completed in 208 milliseconds

1234