Searched defs:entryDN (Results 351 - 375 of 431) sorted by relevance

<<1112131415161718

/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/plugins/
H A DReferentialIntegrityPluginTestCase.java1171 private void isAttributeValueEntry(String entryDN, boolean expected, argument
1179 InternalSearchOperation operation = conn.processSearch(DN.decode(entryDN),
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DConfigFileHandler.java567 DN entryDN = entry.getDN();
568 if (configEntries.containsKey(entryDN))
583 entryDN.toString(),
591 DN parentDN = entryDN.getParent();
607 entryDN.toString(),
628 Message message = ERR_CONFIG_FILE_NO_PARENT.get(entryDN.toString(),
641 configEntries.put(entryDN, configEntry);
1010 public ConfigEntry getConfigEntry(DN entryDN) argument
1013 return configEntries.get(entryDN);
1091 public ConditionResult hasSubordinates(DN entryDN) argument
1115 numSubordinates(DN entryDN, boolean subtree) argument
1146 getEntry(DN entryDN) argument
1164 entryExists(DN entryDN) argument
1342 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
3496 handleConfigChangeResult(ConfigChangeResult result, DN entryDN, String className, String methodName) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/internal/
H A DInternalClientConnection.java782 * @param entryDN The entry DN for the add
794 public AddOperation processAdd(DN entryDN, argument
801 return processAdd(entryDN, objectClasses, userAttributes,
811 * @param entryDN The entry DN for the add
825 public AddOperation processAdd(DN entryDN, argument
835 nextMessageID(), controls, entryDN,
1301 * @param entryDN The entry DN for the compare operation.
1311 public CompareOperation processCompare(DN entryDN, argument
1315 return processCompare(entryDN, attributeType, assertionValue,
1325 * @param entryDN Th
1337 processCompare(DN entryDN, AttributeType attributeType, ByteString assertionValue, List<Control> controls) argument
1444 processDelete(DN entryDN) argument
1462 processDelete(DN entryDN, List<Control> controls) argument
1658 processModify(DN entryDN, List<Modification> modifications) argument
1680 processModify(DN entryDN, List<Modification> modifications, List<Control> controls) argument
1928 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN) argument
1953 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior) argument
1982 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior, List<Control> controls) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/jmx/
H A DJmxClientConnection.java450 * @param entryDN The entry DN for the add
462 public AddOperation processAdd(DN entryDN, argument
472 new ArrayList<Control>(0), entryDN,
493 * @param entryDN The entry DN for the delete operation.
499 public DeleteOperation processDelete(DN entryDN) argument
504 new ArrayList<Control>(0), entryDN);
645 * @param entryDN The entry DN for this modify operation.
653 public ModifyOperation processModify(DN entryDN, argument
659 new ArrayList<Control>(0), entryDN,
735 * @param entryDN Th
747 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/server/
H A DReplicationBackend.java377 public synchronized Entry getEntry(DN entryDN) argument
381 if(baseDNSet.contains(entryDN)) {
382 return new Entry(entryDN, rootObjectclasses, attributes,
392 InternalClientConnection.nextMessageID(), null, entryDN,
416 public synchronized boolean entryExists(DN entryDN) argument
418 return getEntry(entryDN) != null;
440 public synchronized void deleteEntry(DN entryDN, argument
1184 public long numSubordinates(DN entryDN, boolean subtree) argument
1197 public ConditionResult hasSubordinates(DN entryDN) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DDirectoryConfig.java116 * @param entryDN The DN of the configuration entry to retrieve.
124 public static ConfigEntry getConfigEntry(DN entryDN) argument
127 return DirectoryServer.getConfigEntry(entryDN);
804 * @param entryDN The DN of the entry to retrieve.
812 public static Entry getEntry(DN entryDN) argument
815 return DirectoryServer.getEntry(entryDN);
825 * @param entryDN The DN of the entry for which to make the
834 public static boolean entryExists(DN entryDN) argument
837 return DirectoryServer.entryExists(entryDN);
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DBackend.java375 * @param entryDN The distinguished name of the entry to retrieve.
383 public abstract Entry getEntry(DN entryDN) argument
391 * @param entryDN The distinguished name of the entry.
401 public abstract ConditionResult hasSubordinates(DN entryDN) argument
409 * @param entryDN The distinguished name of the entry.
423 public abstract long numSubordinates(DN entryDN, boolean subtree) argument
435 * @param entryDN The DN of the entry for which to determine
444 public boolean entryExists(DN entryDN) argument
447 return getEntry(entryDN) != null;
485 * @param entryDN Th
500 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
1084 handlesEntry(DN entryDN) argument
1118 handlesEntry(DN entryDN, List<DN> baseDNs, List<DN> excludeDNs) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/
H A DRootDSEBackend.java349 public ConditionResult hasSubordinates(DN entryDN) argument
352 long ret = numSubordinates(entryDN, false);
369 public long numSubordinates(DN entryDN, boolean subtree) argument
372 if (entryDN == null || ! entryDN.isNullDN())
415 public Entry getEntry(DN entryDN) argument
419 if (entryDN == null || entryDN.isNullDN())
428 WARN_ROOTDSE_GET_ENTRY_NONROOT.get(String.valueOf(entryDN));
440 if (b.handlesEntry(entryDN))
800 entryExists(DN entryDN) argument
849 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
H A DTrustStoreBackend.java436 public Entry getEntry(DN entryDN) throws DirectoryException argument
439 if (entryDN == null)
447 if (entryDN.equals(baseDN))
455 DN parentDN = entryDN.getParentDNInSuffix();
460 return getCertEntry(entryDN);
480 * @param entryDN The DN of the certificate to retrieve.
487 private Entry getCertEntry(DN entryDN) argument
493 AttributeValue v = entryDN.getRDN().getAttributeValue(t);
497 get(String.valueOf(entryDN));
510 String.valueOf(entryDN), certAlia
599 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
827 hasSubordinates(DN entryDN) argument
836 numSubordinates(DN entryDN, boolean subtree) argument
1511 deleteCertificate(DN entryDN) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DBackendImpl.java531 public ConditionResult hasSubordinates(DN entryDN) argument
534 long ret = numSubordinates(entryDN, false);
553 public long numSubordinates(DN entryDN, boolean subtree) argument
559 ec = rootContainer.getEntryContainer(entryDN);
577 long count = ec.getNumSubordinates(entryDN, subtree);
604 public Entry getEntry(DN entryDN) throws DirectoryException argument
611 ec = rootContainer.getEntryContainer(entryDN);
624 entry = ec.getEntry(entryDN);
652 DN entryDN = entry.getDN();
657 ec = rootContainer.getEntryContainer(entryDN);
690 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DConfigFileHandler.java465 DN entryDN = entry.getDN();
466 if (configEntries.containsKey(entryDN))
471 entryDN.toString(),
479 DN parentDN = entryDN.getParent();
485 entryDN.toString(),
496 Message message = ERR_CONFIG_FILE_NO_PARENT.get(entryDN.toString(),
509 configEntries.put(entryDN, configEntry);
928 public ConfigEntry getConfigEntry(DN entryDN) argument
931 return configEntries.get(entryDN);
997 public ConditionResult hasSubordinates(DN entryDN) argument
1017 numSubordinates(DN entryDN, boolean subtree) argument
1044 getEntry(DN entryDN) argument
1058 entryExists(DN entryDN) argument
1227 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
3250 handleConfigChangeResult(ConfigChangeResult result, DN entryDN, String className, String methodName) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/internal/
H A DInternalClientConnection.java770 * @param entryDN The entry DN for the add
782 public AddOperation processAdd(DN entryDN, argument
789 return processAdd(entryDN, objectClasses, userAttributes,
799 * @param entryDN The entry DN for the add
813 public AddOperation processAdd(DN entryDN, argument
823 nextMessageID(), controls, entryDN,
1289 * @param entryDN The entry DN for the compare operation.
1299 public CompareOperation processCompare(DN entryDN, argument
1303 return processCompare(entryDN, attributeType, assertionValue,
1313 * @param entryDN Th
1325 processCompare(DN entryDN, AttributeType attributeType, ByteString assertionValue, List<Control> controls) argument
1432 processDelete(DN entryDN) argument
1450 processDelete(DN entryDN, List<Control> controls) argument
1646 processModify(DN entryDN, List<Modification> modifications) argument
1668 processModify(DN entryDN, List<Modification> modifications, List<Control> controls) argument
1916 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN) argument
1941 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior) argument
1970 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior, List<Control> controls) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/jmx/
H A DJmxClientConnection.java445 * @param entryDN The entry DN for the add
457 public AddOperation processAdd(DN entryDN, argument
467 new ArrayList<Control>(0), entryDN,
488 * @param entryDN The entry DN for the delete operation.
494 public DeleteOperation processDelete(DN entryDN) argument
499 new ArrayList<Control>(0), entryDN);
640 * @param entryDN The entry DN for this modify operation.
648 public ModifyOperation processModify(DN entryDN, argument
654 new ArrayList<Control>(0), entryDN,
730 * @param entryDN Th
742 processModifyDN(DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior) argument
[all...]
/forgerock/opendj2-hg/src/server/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);
798 * @param entryDN The DN of the entry to retrieve.
806 public static Entry getEntry(DN entryDN) argument
809 return DirectoryServer.getEntry(entryDN);
819 * @param entryDN The DN of the entry for which to make the
828 public static boolean entryExists(DN entryDN) argument
831 return DirectoryServer.entryExists(entryDN);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DBackend.java415 * @param entryDN The distinguished name of the entry to retrieve.
423 public abstract Entry getEntry(DN entryDN) argument
431 * @param entryDN The distinguished name of the entry.
441 public abstract ConditionResult hasSubordinates(DN entryDN) argument
449 * @param entryDN The distinguished name of the entry.
463 public abstract long numSubordinates(DN entryDN, boolean subtree) argument
475 * @param entryDN The DN of the entry for which to determine
484 public boolean entryExists(DN entryDN) argument
487 return (getEntry(entryDN) != null);
525 * @param entryDN Th
540 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
1209 handlesEntry(DN entryDN) argument
1245 handlesEntry(DN entryDN, List<DN> baseDNs, List<DN> excludeDNs) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/
H A DRootDSEBackend.java404 public ConditionResult hasSubordinates(DN entryDN) argument
407 long ret = numSubordinates(entryDN, false);
428 public long numSubordinates(DN entryDN, boolean subtree) argument
431 if (entryDN == null || ! entryDN.isNullDN())
478 public Entry getEntry(DN entryDN) argument
482 if ((entryDN == null) || entryDN.isNullDN())
491 WARN_ROOTDSE_GET_ENTRY_NONROOT.get(String.valueOf(entryDN));
503 if (b.handlesEntry(entryDN))
1018 entryExists(DN entryDN) argument
1076 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
H A DTrustStoreBackend.java490 public Entry getEntry(DN entryDN) argument
494 if (entryDN == null)
503 if (entryDN.equals(baseDN))
511 DN parentDN = entryDN.getParentDNInSuffix();
520 return getCertEntry(entryDN);
540 * @param entryDN The DN of the certificate to retrieve.
547 private Entry getCertEntry(DN entryDN) argument
553 AttributeValue v = entryDN.getRDN().getAttributeValue(t);
557 get(String.valueOf(entryDN));
570 String.valueOf(entryDN), certAlia
667 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
974 hasSubordinates(DN entryDN) argument
987 numSubordinates(DN entryDN, boolean subtree) argument
1712 deleteCertificate(DN entryDN) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DBackendImpl.java637 public ConditionResult hasSubordinates(DN entryDN) argument
640 long ret = numSubordinates(entryDN, false);
661 public long numSubordinates(DN entryDN, boolean subtree) argument
667 ec = rootContainer.getEntryContainer(entryDN);
685 long count = ec.getNumSubordinates(entryDN, subtree);
714 public Entry getEntry(DN entryDN) throws DirectoryException argument
721 ec = rootContainer.getEntryContainer(entryDN);
734 entry = ec.getEntry(entryDN);
764 DN entryDN = entry.getDN();
769 ec = rootContainer.getEntryContainer(entryDN);
804 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/task/
H A DTaskBackend.java391 public ConditionResult hasSubordinates(DN entryDN) argument
394 long ret = numSubordinates(entryDN, false);
415 public long numSubordinates(DN entryDN, boolean subtree) argument
418 if (entryDN == null)
423 if (entryDN.equals(taskRootDN))
436 else if (entryDN.equals(scheduledTaskParentDN))
440 else if (entryDN.equals(recurringTaskParentDN))
445 DN parentDN = entryDN.getParentDNInSuffix();
452 taskScheduler.getScheduledTask(entryDN) != null)
457 taskScheduler.getRecurringTask(entryDN) !
473 getEntry(DN entryDN) argument
579 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMStoreConnection.java1645 protected static int daysSinceModified(SSOToken stoken, String entryDN) argument
1661 .getAttributes(stoken, entryDN, attrNames,
1702 + entryDN + ", days: " + elapsedDays + " days");
/forgerock/openam-v13/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-v13/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/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DBackend.java358 * @param entryDN
364 public abstract Entry getEntry(DN entryDN) throws DirectoryException; argument
369 * @param entryDN The distinguished name of the entry.
379 public abstract ConditionResult hasSubordinates(DN entryDN) throws DirectoryException; argument
415 * @param entryDN
422 public boolean entryExists(DN entryDN) throws DirectoryException argument
424 return getEntry(entryDN) != null;
457 * @param entryDN The DN of the entry to remove from this
472 public abstract void deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
944 * @param entryDN Th
950 handlesEntry(DN entryDN) argument
982 handlesEntry(DN entryDN, Collection<DN> baseDNs, Collection<DN> excludeDNs) argument
994 isExcluded(Collection<DN> excludeDNs, DN entryDN) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/
H A DBackupBackend.java322 public ConditionResult hasSubordinates(DN entryDN) throws DirectoryException argument
324 long ret = getNumberOfSubordinates(entryDN, false);
346 private long getNumberOfSubordinates(DN entryDN, boolean includeSubtree) throws DirectoryException argument
350 if (backupBaseDN.equals(entryDN))
376 entryDN, e.getMessage()));
389 DN parentDN = entryDN.getParentDNInSuffix();
397 Entry backupDirEntry = getBackupDirectoryEntry(entryDN);
432 public Entry getEntry(DN entryDN) argument
436 if (entryDN == null)
444 if (entryDN
491 getBackupDirectoryEntry(DN entryDN) argument
566 getBackupEntry(DN entryDN) argument
707 deleteEntry(DN entryDN, DeleteOperation deleteOperation) argument
[all...]
H A DMonitorBackend.java244 public void deleteEntry(final DN entryDN, argument
248 ERR_BACKEND_DELETE_NOT_SUPPORTED.get(entryDN, getBackendID()));
253 public boolean entryExists(final DN entryDN) throws DirectoryException argument
255 return getDIT().containsKey(entryDN);
345 public Entry getEntry(final DN entryDN) throws DirectoryException argument
348 if (entryDN == null)
356 if (entryDN.equals(baseMonitorDN))
363 if (!dit.containsKey(entryDN))
366 ERR_MONITOR_INVALID_BASE.get(entryDN, baseMonitorDN));
370 return getEntry(entryDN, di
396 hasSubordinates(final DN entryDN) argument
473 getNumberOfSubordinates(final DN entryDN, final boolean includeSubtree) argument
730 getEntry(final DN entryDN, final Map<DN, MonitorProvider<?>> dit) argument
765 getMonitorEntry(final DN entryDN, final MonitorProvider<?> monitorProvider) argument
[all...]

Completed in 105 milliseconds

<<1112131415161718