Searched defs:entryDN (Results 376 - 400 of 431) sorted by relevance

<<1112131415161718

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/
H A DRootDSEBackend.java321 public ConditionResult hasSubordinates(DN entryDN) throws DirectoryException argument
323 final long ret = getNumberOfChildren(entryDN);
381 public Entry getEntry(DN entryDN) throws DirectoryException argument
384 if (entryDN == null || entryDN.isRootDN())
392 logger.warn(WARN_ROOTDSE_GET_ENTRY_NONROOT, entryDN);
403 if (b.handlesEntry(entryDN))
405 return b.getEntry(entryDN);
604 public boolean entryExists(DN entryDN) throws DirectoryException argument
607 if (entryDN
639 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
H A DTrustStoreBackend.java385 public Entry getEntry(DN entryDN) throws DirectoryException argument
388 if (entryDN == null)
396 if (entryDN.equals(baseDN))
404 DN parentDN = entryDN.getParentDNInSuffix();
409 return getCertEntry(entryDN);
426 * @param entryDN The DN of the certificate to retrieve.
433 private Entry getCertEntry(DN entryDN) argument
438 ByteString v = entryDN.rdn().getAttributeValue(t);
441 LocalizableMessage message = ERR_TRUSTSTORE_DN_DOES_NOT_SPECIFY_CERTIFICATE.get(entryDN);
452 LocalizableMessage message = ERR_TRUSTSTORE_CERTIFICATE_NOT_FOUND.get(entryDN, certAlia
525 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
712 hasSubordinates(DN entryDN) argument
1309 deleteCertificate(DN entryDN) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DBackendImpl.java127 * Begin a Backend API method that accesses the {@link EntryContainer} for <code>entryDN</code>
130 * @param entryDN the target DN for the operation
131 * @return <code>EntryContainer</code> where <code>entryDN</code> resides
133 private EntryContainer accessBegin(Operation operation, DN entryDN) throws DirectoryException argument
137 EntryContainer ec = rootContainer.getEntryContainer(entryDN);
140 throw new DirectoryException(ResultCode.UNDEFINED, ERR_BACKEND_ENTRY_DOESNT_EXIST.get(entryDN, getBackendID()));
346 public ConditionResult hasSubordinates(DN entryDN) throws DirectoryException argument
350 container = accessBegin(null, entryDN);
364 return ConditionResult.valueOf(container.hasSubordinates(entryDN));
441 public boolean entryExists(final DN entryDN) throw argument
462 getEntry(DN entryDN) argument
505 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/task/
H A DTaskBackend.java341 public ConditionResult hasSubordinates(DN entryDN) argument
344 long ret = numSubordinates(entryDN, false);
366 private long numSubordinates(DN entryDN, boolean subtree) throws DirectoryException argument
368 if (entryDN == null)
373 if (entryDN.equals(taskRootDN))
386 else if (entryDN.equals(scheduledTaskParentDN))
390 else if (entryDN.equals(recurringTaskParentDN))
395 DN parentDN = entryDN.getParentDNInSuffix();
402 taskScheduler.getScheduledTask(entryDN) != null)
407 taskScheduler.getRecurringTask(entryDN) !
421 getEntry(DN entryDN) argument
520 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DConfigFileHandler.java420 DN entryDN = entry.getName();
421 if (configEntries.containsKey(entryDN))
426 entryDN, reader.getLastEntryLineNumber(), f.getAbsolutePath()));
431 DN parentDN = entryDN.parent();
437 entryDN, reader.getLastEntryLineNumber(), f.getAbsolutePath()));
446 entryDN, reader.getLastEntryLineNumber(), f.getAbsolutePath(), parentDN));
456 configEntries.put(entryDN, configEntry);
773 public ConfigEntry getConfigEntry(DN entryDN) argument
776 return configEntries.get(entryDN);
833 public ConditionResult hasSubordinates(DN entryDN) argument
875 getEntry(DN entryDN) argument
889 entryExists(DN entryDN) argument
1006 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
2024 handleConfigChangeResult(ConfigChangeResult result, DN entryDN, String className, String methodName) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/
H A DInternalClientConnection.java726 * @param entryDN The entry DN for the add
738 public AddOperation processAdd(DN entryDN, argument
745 return processAdd(entryDN, objectClasses, userAttributes,
755 * @param entryDN The entry DN for the add
769 public AddOperation processAdd(DN entryDN, argument
779 nextMessageID(), controls, entryDN,
1234 * @param entryDN The entry DN for the compare operation.
1244 public CompareOperation processCompare(DN entryDN, argument
1248 return processCompare(entryDN, attributeType, assertionValue,
1258 * @param entryDN Th
1270 processCompare(DN entryDN, AttributeType attributeType, ByteString assertionValue, List<Control> controls) argument
1377 processDelete(DN entryDN) argument
1395 processDelete(DN entryDN, List<Control> controls) argument
1591 processModify(DN entryDN, List<Modification> modifications) argument
1613 processModify(DN entryDN, List<Modification> modifications, List<Control> controls) argument
1858 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN) argument
1883 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior) argument
1912 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior, List<Control> controls) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DDirectoryConfig.java110 * @param entryDN The DN of the configuration entry to retrieve.
118 public static ConfigEntry getConfigEntry(DN entryDN) argument
121 return DirectoryServer.getConfigEntry(entryDN);
749 * @param entryDN The DN of the entry to retrieve.
757 public static Entry getEntry(DN entryDN) argument
760 return DirectoryServer.getEntry(entryDN);
770 * @param entryDN The DN of the entry for which to make the
779 public static boolean entryExists(DN entryDN) argument
782 return DirectoryServer.entryExists(entryDN);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/workflowelement/localbackend/
H A DLocalBackendModifyOperation.java139 private DN entryDN; field in class:LocalBackendModifyOperation
354 entryDN = getEntryDN();
355 if (entryDN == null)
371 appendErrorMessage(ERR_MODIFY_NO_MODIFICATIONS.get(entryDN));
378 final DNLock entryLock = DirectoryServer.getLockManager().tryWriteLockEntry(entryDN);
384 appendErrorMessage(ERR_MODIFY_CANNOT_LOCK_ENTRY.get(entryDN));
390 currentEntry = backend.getEntry(entryDN);
394 appendErrorMessage(ERR_MODIFY_NO_SUCH_ENTRY.get(entryDN));
395 setMatchedDN(findMatchedDN(entryDN));
405 selfChange = entryDN
602 findMatchedDN(DN entryDN) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/plugins/
H A DReferentialIntegrityPluginTestCase.java1119 private void isAttributeValueEntry(String entryDN, boolean expected, argument
1124 final SearchRequest request = newSearchRequest(entryDN, SearchScope.BASE_OBJECT, "(" + attr + "=*)");
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/
H A DFractionalReplicationTest.java986 private Entry waitTillEntryHasSynchroAttribute(String entryDN) argument
990 DN dn = DN.valueOf(entryDN);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMStoreConnection.java1647 protected static int daysSinceModified(SSOToken stoken, String entryDN) argument
1663 .getAttributes(stoken, entryDN, attrNames,
1704 + entryDN + ", days: " + elapsedDays + " days");
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/remote/
H A DRemoteServicesImpl.java126 * @param entryDN
128 * @return true if the entryDN exists in the directory, false otherwise
130 public boolean doesEntryExists(SSOToken token, String entryDN) { argument
133 Object[] objs = { tokenID, entryDN };
211 * Gets the attributes for this entryDN from the corresponding DC Tree node.
216 * @param entryDN
223 * the object type of entryDN.
228 public Map getDCTreeAttributes(SSOToken token, String entryDN, argument
234 Object[] objs = { tokenID, entryDN,
243 "RemoteServicesImpl.getDCTreeAttributes: entryDN
269 getAttributes(SSOToken token, String entryDN, int profileType) argument
309 getAttributes(SSOToken token, String entryDN, Set attrNames, int profileType) argument
349 getAttributesFromDS(SSOToken token, String entryDN, Set attrNames, int profileType) argument
354 getAttributesByteValues(SSOToken token, String entryDN, int profileType) argument
390 getAttributesByteValues(SSOToken token, String entryDN, Set attrNames, int profileType) argument
445 getAttributes(SSOToken token, String entryDN, boolean ignoreCompliance, boolean byteValues, int profileType) argument
509 getAttributes(SSOToken token, String entryDN, Set attrNames, boolean ignoreCompliance, boolean byteValues, int profileType) argument
549 getOrgSearchFilter(String entryDN) argument
593 getOrganizationDN(SSOToken token, String entryDN) argument
644 verifyAndGetOrgDN(SSOToken token, String entryDN, String childDN) argument
695 getExternalAttributes(SSOToken token, String entryDN, Set attrNames, int profileType) argument
841 removeEntry(SSOToken token, String entryDN, int objectType, boolean recursive, boolean softDelete) argument
941 search(SSOToken token, String entryDN, String searchFilter, int searchScope) argument
985 search(SSOToken token, String entryDN, String searchFilter, SearchControl searchControl, String attrNames[]) argument
1072 getMembers(SSOToken token, String entryDN, int objectType) argument
1119 renameEntry(SSOToken token, int objectType, String entryDN, String newName, boolean deleteOldName) argument
1168 setAttributes(SSOToken token, String entryDN, int objectType, Map stringAttributes, Map byteAttributes, boolean isAdd) argument
1217 changePassword(SSOToken token, String entryDN, String attrName, String oldPassword, String newPassword) argument
1259 getGroupFilterAndScope(SSOToken token, String entryDN, int profileType) argument
1307 setGroupFilter(SSOToken token, String entryDN, String filter) argument
1401 getRegisteredServiceNames(SSOToken token, String entryDN) argument
1492 unRegisterService(SSOToken token, String entryDN, int objectType, String serviceName, int type) argument
1537 getAMTemplateDN(SSOToken token, String entryDN, int objectType, String serviceName, int type) argument
1587 createAMTemplate(SSOToken token, String entryDN, int objectType, String serviceName, Map attributes, int priority) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DPersistentObject.java383 * @param entryDN DN of the profile whose template is to be set
390 public void changePassword(String entryDN, String attrName, argument
/forgerock/opendj2/src/server/org/opends/server/backends/
H A DSchemaBackend.java586 public ConditionResult hasSubordinates(DN entryDN) argument
594 public long numSubordinates(DN entryDN, boolean subtree) argument
602 public Entry getEntry(DN entryDN) argument
610 if (entryDN.equals(baseDN))
612 return getSchemaEntry(entryDN, false, true);
625 * @param entryDN The DN to use for the generated entry.
632 public Entry getSchemaEntry(DN entryDN, boolean includeSchemaFile) argument
634 return getSchemaEntry(entryDN, includeSchemaFile, false);
640 * @param entryDN The DN to use for the generated entry.
652 private Entry getSchemaEntry(DN entryDN, boolea argument
948 entryExists(DN entryDN) argument
975 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DEntryContainer.java809 * @param entryDN The distinguished name of the entry.
817 public long getNumSubordinates(DN entryDN, boolean subtree) argument
820 EntryID entryID = dn2id.get(null, entryDN, LockMode.DEFAULT);
1526 DN entryDN = entry.getDN();
1535 if ((entryDN.getNumComponents() ==
1537 entryDN.isDescendantOf(aBaseDN))
1544 if (entryDN.isDescendantOf(aBaseDN))
1551 if ((entryDN.getNumComponents() >
1553 entryDN.isDescendantOf(aBaseDN))
1799 * @param entryDN Th
1808 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
2153 entryExists(DN entryDN) argument
2193 getEntry(DN entryDN) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/
H A DSchemaBackend.java607 public ConditionResult hasSubordinates(DN entryDN) argument
619 public long numSubordinates(DN entryDN, boolean subtree) argument
631 public Entry getEntry(DN entryDN) argument
639 if (entryDN.equals(baseDN))
641 return getSchemaEntry(entryDN, false, true);
654 * @param entryDN The DN to use for the generated entry.
661 public Entry getSchemaEntry(DN entryDN, boolean includeSchemaFile) argument
663 return getSchemaEntry(entryDN, includeSchemaFile, false);
669 * @param entryDN The DN to use for the generated entry.
681 private Entry getSchemaEntry(DN entryDN, boolea argument
1040 entryExists(DN entryDN) argument
1076 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DEntryContainer.java811 * @param entryDN The distinguished name of the entry.
819 public long getNumSubordinates(DN entryDN, boolean subtree) argument
822 EntryID entryID = dn2id.get(null, entryDN, LockMode.DEFAULT);
1528 DN entryDN = entry.getDN();
1537 if ((entryDN.getNumComponents() ==
1539 entryDN.isDescendantOf(aBaseDN))
1546 if (entryDN.isDescendantOf(aBaseDN))
1553 if ((entryDN.getNumComponents() >
1555 entryDN.isDescendantOf(aBaseDN))
1801 * @param entryDN Th
1810 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
2155 entryExists(DN entryDN) argument
2199 getEntry(DN entryDN) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DModifyOperationTestCase.java754 private ModifyOperation processModify(String entryDN, argument
758 return conn.processModify(ByteString.valueOf(entryDN), mods);
761 private ModifyOperation processModify(String entryDN, RawModification... mods) argument
764 return conn.processModify(ByteString.valueOf(entryDN), Arrays.asList(mods));
767 private ModifyOperation processModify(String entryDN, argument
771 return conn.processModify(ByteString.valueOf(entryDN), mods, requestControls);
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/
H A DSchemaBackend.java607 public ConditionResult hasSubordinates(DN entryDN) argument
619 public long numSubordinates(DN entryDN, boolean subtree) argument
631 public Entry getEntry(DN entryDN) argument
639 if (entryDN.equals(baseDN))
641 return getSchemaEntry(entryDN, false, true);
654 * @param entryDN The DN to use for the generated entry.
661 public Entry getSchemaEntry(DN entryDN, boolean includeSchemaFile) argument
663 return getSchemaEntry(entryDN, includeSchemaFile, false);
669 * @param entryDN The DN to use for the generated entry.
681 private Entry getSchemaEntry(DN entryDN, boolea argument
1040 entryExists(DN entryDN) argument
1076 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DEntryContainer.java811 * @param entryDN The distinguished name of the entry.
819 public long getNumSubordinates(DN entryDN, boolean subtree) argument
822 EntryID entryID = dn2id.get(null, entryDN, LockMode.DEFAULT);
1528 DN entryDN = entry.getDN();
1537 if ((entryDN.getNumComponents() ==
1539 entryDN.isDescendantOf(aBaseDN))
1546 if (entryDN.isDescendantOf(aBaseDN))
1553 if ((entryDN.getNumComponents() >
1555 entryDN.isDescendantOf(aBaseDN))
1801 * @param entryDN Th
1810 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
2155 entryExists(DN entryDN) argument
2199 getEntry(DN entryDN) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DModifyOperationTestCase.java754 private ModifyOperation processModify(String entryDN, argument
758 return conn.processModify(ByteString.valueOf(entryDN), mods);
761 private ModifyOperation processModify(String entryDN, RawModification... mods) argument
764 return conn.processModify(ByteString.valueOf(entryDN), Arrays.asList(mods));
767 private ModifyOperation processModify(String entryDN, argument
771 return conn.processModify(ByteString.valueOf(entryDN), mods, requestControls);
/forgerock/opendj2-hg/src/server/org/opends/server/backends/
H A DSchemaBackend.java586 public ConditionResult hasSubordinates(DN entryDN) argument
594 public long numSubordinates(DN entryDN, boolean subtree) argument
602 public Entry getEntry(DN entryDN) argument
610 if (entryDN.equals(baseDN))
612 return getSchemaEntry(entryDN, false, true);
625 * @param entryDN The DN to use for the generated entry.
632 public Entry getSchemaEntry(DN entryDN, boolean includeSchemaFile) argument
634 return getSchemaEntry(entryDN, includeSchemaFile, false);
640 * @param entryDN The DN to use for the generated entry.
652 private Entry getSchemaEntry(DN entryDN, boolea argument
948 entryExists(DN entryDN) argument
975 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DEntryContainer.java809 * @param entryDN The distinguished name of the entry.
817 public long getNumSubordinates(DN entryDN, boolean subtree) argument
820 EntryID entryID = dn2id.get(null, entryDN, LockMode.DEFAULT);
1526 DN entryDN = entry.getDN();
1535 if ((entryDN.getNumComponents() ==
1537 entryDN.isDescendantOf(aBaseDN))
1544 if (entryDN.isDescendantOf(aBaseDN))
1551 if ((entryDN.getNumComponents() >
1553 entryDN.isDescendantOf(aBaseDN))
1799 * @param entryDN Th
1808 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
2153 entryExists(DN entryDN) argument
2193 getEntry(DN entryDN) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/
H A DSchemaBackend.java610 public ConditionResult hasSubordinates(DN entryDN) argument
621 public long numSubordinates(DN entryDN, boolean subtree) argument
632 public Entry getEntry(DN entryDN) argument
639 if (entryDN.equals(baseDN))
641 return getSchemaEntry(entryDN, false, true);
654 * @param entryDN The DN to use for the generated entry.
661 public Entry getSchemaEntry(DN entryDN, boolean includeSchemaFile) argument
663 return getSchemaEntry(entryDN, includeSchemaFile, false);
669 * @param entryDN The DN to use for the generated entry.
681 private Entry getSchemaEntry(DN entryDN, boolea argument
1040 entryExists(DN entryDN) argument
1075 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DEntryContainer.java811 * @param entryDN The distinguished name of the entry.
819 public long getNumSubordinates(DN entryDN, boolean subtree) argument
822 EntryID entryID = dn2id.get(null, entryDN, LockMode.DEFAULT);
1528 DN entryDN = entry.getDN();
1537 if ((entryDN.getNumComponents() ==
1539 entryDN.isDescendantOf(aBaseDN))
1546 if (entryDN.isDescendantOf(aBaseDN))
1553 if ((entryDN.getNumComponents() >
1555 entryDN.isDescendantOf(aBaseDN))
1801 * @param entryDN Th
1810 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
2155 entryExists(DN entryDN) argument
2199 getEntry(DN entryDN) argument
[all...]

Completed in 129 milliseconds

<<1112131415161718