Searched defs:entryDN (Results 126 - 150 of 431) sorted by relevance

1234567891011>>

/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DDeleteOperationBasis.java65 private DN entryDN; field in class:DeleteOperationBasis
95 entryDN = null;
111 * @param entryDN The entry DN for this delete operation.
116 DN entryDN)
121 this.entryDN = entryDN;
123 rawEntryDN = ByteString.valueOf(entryDN.toString());
141 entryDN = null;
150 if (entryDN == null)
152 entryDN
113 DeleteOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, DN entryDN) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DDefaultEntryCache.java122 public boolean containsEntry(DN entryDN) argument
124 if (entryDN == null) {
129 if (entryCache.containsEntry(entryDN)) {
166 public Entry getEntry(DN entryDN) argument
170 Entry entry = entryCache.getEntry(entryDN);
191 public long getEntryID(DN entryDN) argument
195 long entryID = entryCache.getEntryID(entryDN);
214 DN entryDN = entryCache.getEntryDN(backend, entryID);
215 if (entryDN != null)
217 return entryDN;
268 removeEntry(DN entryDN) argument
[all...]
H A DPasswordModifyExtendedOperation.java1158 * @param entryDN The DN of the user entry to retrieve.
1163 private Entry getEntryByDN(ExtendedOperation operation, DN entryDN) argument
1169 Entry userEntry = DirectoryServer.getEntry(entryDN);
1176 String.valueOf(entryDN)));
1179 operation.setMatchedDN(findMatchedDN(entryDN));
1200 private DN findMatchedDN(DN entryDN) argument
1204 DN matchedDN = entryDN.getParentDNInSuffix();
/forgerock/opendj2-hg/src/server/org/opends/server/workflowelement/localbackend/
H A DLocalBackendDeleteOperation.java78 private DN entryDN; field in class:LocalBackendDeleteOperation
192 entryDN = getEntryDN();
193 if (entryDN == null)
199 final Lock entryLock = LockManager.lockWrite(entryDN);
207 String.valueOf(entryDN)));
212 entry = backend.getEntry(entryDN);
217 .get(String.valueOf(entryDN)));
219 setMatchedDN(findMatchedDN(entryDN));
249 .valueOf(entryDN)));
286 .get(String.valueOf(entryDN)));
372 findMatchedDN(DN entryDN) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DCallBackHelper.java89 public Map getAttributes(SSOToken token, String entryDN, Set attrNames, argument
106 Map implAttrs = impl.getAttributes(token, entryDN, attrNames);
116 public Map preProcess(SSOToken token, String entryDN, String orgDN, argument
134 map = impl.preProcessCreate(token, entryDN, newAttrMap,
139 map = impl.preProcessModify(token, entryDN, oldAttrMap,
144 impl.preProcessDelete(token, entryDN, oldAttrMap,
164 public AttrSet preProcess(SSOToken token, String entryDN, String orgDN, argument
185 map = impl.preProcessCreate(token, entryDN, newAttrMap,
190 map = impl.preProcessModify(token, entryDN, oldAttrMap,
195 impl.preProcessDelete(token, entryDN, oldAttrMa
215 postProcess(SSOToken token, String entryDN, String orgDN, AttrSet oldAttrSet, AttrSet newAttrSet, int operation, int objectType, boolean softDelete) argument
256 postProcess(SSOToken token, String entryDN, String orgDN, Map oldAttrMap, Map newAttrMap, int operation, int objectType, boolean softDelete) argument
299 preProcessModifyMemberShip(SSOToken token, String entryDN, String orgDN, Set members, int operation, int objectType) argument
340 postProcessModifyMemberShip(SSOToken token, String entryDN, String orgDN, Set members, int operation, int objectType) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/common/
H A DIdCacheBlock.java155 public IdCacheBlock(String entryDN, boolean validEntry) { argument
156 super(entryDN, validEntry);
159 public IdCacheBlock(String entryDN, String orgDN, boolean validEntry) { argument
160 super(entryDN, orgDN, validEntry);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DAccessControlHandler.java123 * entry, or entryDN if entry is null.
128 * entryDN parameter
129 * @param entryDN
140 public boolean canDiscloseInformation(Entry entry, DN entryDN, argument
145 entry = DirectoryServer.getEntry(entryDN);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DImportLDIFReader.java129 DN entryDN;
147 entryDN = readDN(lines);
155 if (entryDN == null)
162 if (!importConfig.includeEntry(entryDN))
165 + "should be included based on the include and exclude branches.", entryDN);
167 logToSkipWriter(lines, ERR_LDIF_SKIP.get(entryDN));
170 entryContainer = getEntryContainer(entryDN, suffixesMap);
174 + "should be included based on a suffix match check.", entryDN);
176 logToSkipWriter(lines, ERR_LDIF_SKIP.get(entryDN));
182 if (!addPending(entryDN))
204 createEntry(List<StringBuilder> lines, DN entryDN, boolean checkSchema) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DDeleteOperationBasis.java61 private DN entryDN; field in class:DeleteOperationBasis
100 * @param entryDN The entry DN for this delete operation.
105 DN entryDN)
109 this.entryDN = entryDN;
110 rawEntryDN = ByteString.valueOfUtf8(entryDN.toString());
124 entryDN = null;
132 if (entryDN == null)
134 entryDN = DN.decode(rawEntryDN);
142 return entryDN;
102 DeleteOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, DN entryDN) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DVirtualAttributeRule.java249 private boolean matchesAnyBaseDN(DN entryDN) argument
253 if (entryDN.matchesBaseAndScope(dn, scope))
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/workflowelement/localbackend/
H A DLocalBackendCompareOperation.java68 private DN entryDN; field in class:LocalBackendCompareOperation
144 entryDN = getEntryDN();
145 if (entryDN == null)
153 if (DirectoryServer.getConfigHandler().handlesEntry(entryDN)
169 entry = DirectoryServer.getEntry(entryDN);
173 appendErrorMessage(ERR_COMPARE_NO_SUCH_ENTRY.get(entryDN));
176 setMatchedDN(findMatchedDN(entryDN));
184 setResultCodeAndMessageNoInfoDisclosure(entry, entryDN,
207 setResultCodeAndMessageNoInfoDisclosure(entry, entryDN,
209 ERR_COMPARE_AUTHZ_INSUFFICIENT_ACCESS_RIGHTS.get(entryDN));
279 setResultCodeAndMessageNoInfoDisclosure(Entry entry, DN entryDN, ResultCode realResultCode, LocalizableMessage realMessage) argument
287 findMatchedDN(DN entryDN) argument
[all...]
H A DLocalBackendDeleteOperation.java87 private DN entryDN; field in class:LocalBackendDeleteOperation
192 entryDN = getEntryDN();
193 if (entryDN == null)
202 final DNLock subtreeLock = DirectoryServer.getLockManager().tryWriteLockSubtree(entryDN);
208 appendErrorMessage(ERR_DELETE_CANNOT_LOCK_ENTRY.get(entryDN));
213 entry = backend.getEntry(entryDN);
217 appendErrorMessage(ERR_DELETE_NO_SUCH_ENTRY.get(entryDN));
219 setMatchedDN(findMatchedDN(entryDN));
246 ERR_DELETE_AUTHZ_INSUFFICIENT_ACCESS_RIGHTS.get(entryDN));
275 appendErrorMessage(ERR_DELETE_NO_SUCH_ENTRY.get(entryDN));
362 findMatchedDN(DN entryDN) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/controls/
H A DPasswordPolicyControlTestCase.java555 * <userDN> <entryDN> <changeAfterReset>
583 * @param entryDN
591 public void testModifyMustChange(String userDN, String entryDN, boolean changeAfterReset) argument
646 new ModifyRequestProtocolOp(ByteString.valueOfUtf8(entryDN), mods);
724 String entryDN = "uid=test.user,o=test";
791 new ModifyRequestProtocolOp(ByteString.valueOfUtf8(entryDN), mods);
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DEntryDNVirtualAttributeProviderTestCase.java56 * A set of test cases for the entryDN virtual attribute provider.
61 /** The attribute type for the entryDN attribute. */
86 * Retrieves a set of entry DNs for use in testing the entryDN virtual
89 * @return A set of entry DNs for use in testing the entryDN virtual
115 * the entry returned includes the entryDN operational attribute with the
118 * @param entryDN The DN of the entry to retrieve and verify.
123 public void testGetEntry(DN entryDN) argument
126 Entry e = DirectoryServer.getEntry(entryDN);
137 assertTrue(a.contains(ByteString.valueOfUtf8(entryDN.toString())));
145 * the entryDN attribut
153 testSearchEmptyAttrs(DN entryDN) argument
171 testSearchNoAttrs(DN entryDN) argument
189 testSearchAllUserAttrs(DN entryDN) argument
207 testSearchAllOperationalAttrs(DN entryDN) argument
225 testSearchEntryDNAttr(DN entryDN) argument
243 testSearchExcludeEntryDNAttr(DN entryDN) argument
262 testSearchEntryDNAttrInMatchingFilter(DN entryDN) argument
287 testSearchEntryDNAttrInNonMatchingFilter(DN entryDN) argument
309 testSearchEntryDNAttrRealAttrsOnly(DN entryDN) argument
335 testSearchEntryDNAttrVirtualAttrsOnly(DN entryDN) argument
[all...]
H A DEntryUUIDVirtualAttributeProviderTestCase.java111 * @param entryDN The DN of the entry to retrieve and verify.
116 public void testGetEntry(DN entryDN) argument
119 String uuidString = UUID.nameUUIDFromBytes(entryDN.toNormalizedByteString().toByteArray()).toString();
121 Entry e = DirectoryServer.getEntry(entryDN);
179 * @param entryDN The DN of the entry to retrieve and verify.
184 public void testSearchEmptyAttrs(DN entryDN) argument
187 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, entryUUIDType);
197 * @param entryDN The DN of the entry to retrieve and verify.
202 public void testSearchNoAttrs(DN entryDN) argument
205 ExtensionTestUtils.testSearchNoAttrs(entryDN, entryUUIDTyp
220 testSearchAllUserAttrs(DN entryDN) argument
238 testSearchAllOperationalAttrs(DN entryDN) argument
256 testSearchEntryUUIDAttr(DN entryDN) argument
274 testSearchExcludeEntryUUIDAttr(DN entryDN) argument
293 testSearchEntryUUIDAttrInMatchingFilter(DN entryDN) argument
320 testSearchEntryUUIDAttrInNonMatchingFilter(DN entryDN) argument
341 testSearchEntryUUIDAttrRealAttrsOnly(DN entryDN) argument
367 testSearchEntryUUIDAttrVirtualAttrsOnly(DN entryDN) argument
[all...]
H A DGoverningStructureRuleVirtualAttributeProviderTestCase.java173 * @param entryDN The DN of the entry to retrieve and verify.
179 public void testGetEntry(DN entryDN,String ruleId) argument
182 Entry e = DirectoryServer.getEntry(entryDN);
204 * @param entryDN The DN of the entry to retrieve and verify.
209 public void testSearchEmptyAttrs(DN entryDN) argument
212 ExtensionTestUtils.testSearchEmptyAttrs(entryDN, governingStructureRuleType);
222 * @param entryDN The DN of the entry to retrieve and verify.
227 public void testSearchNoAttrs(DN entryDN) argument
230 ExtensionTestUtils.testSearchNoAttrs(entryDN, governingStructureRuleType);
240 * @param entryDN Th
245 testSearchAllUserAttrs(DN entryDN) argument
263 testSearchAllOperationalAttrs(DN entryDN) argument
281 testSearchGoverningStructureRulesAttr(DN entryDN) argument
299 testSearchExcludeGovStructRuleAttr(DN entryDN) argument
318 testSearchGovStructRuleInMatchingFilter(DN entryDN,String oc) argument
343 testSearchGovStructRuleAttrInNonMatchingFilter(DN entryDN) argument
363 testSearchGovStructRuleAttrRealAttrsOnly(DN entryDN) argument
390 testSearchGovStructRuleAttrVirtualAttrsOnly(DN entryDN) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/protocols/jmx/
H A DJmxPrivilegeTestCase.java842 private void processDelete(DN entryDN) argument
844 DeleteOperation delOp = getRootConnection().processDelete(entryDN);
848 private JmxClientConnection newJmxClientConnection(JmxConnectionHandler jmxCtx, DN entryDN) throws DirectoryException argument
850 Entry entry = DirectoryServer.getEntry(entryDN);
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/
H A DHistoricalTest.java315 private void waitUntilEntryValueEquals(final DN entryDN, final AttributeType attrType, final String expectedValue) argument
327 assertEquals(getEntryValue(entryDN, attrType), expectedValue);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DCallBackHelper.java89 public Map getAttributes(SSOToken token, String entryDN, Set attrNames, argument
106 Map implAttrs = impl.getAttributes(token, entryDN, attrNames);
116 public Map preProcess(SSOToken token, String entryDN, String orgDN, argument
134 map = impl.preProcessCreate(token, entryDN, newAttrMap,
139 map = impl.preProcessModify(token, entryDN, oldAttrMap,
144 impl.preProcessDelete(token, entryDN, oldAttrMap,
164 public AttrSet preProcess(SSOToken token, String entryDN, String orgDN, argument
185 map = impl.preProcessCreate(token, entryDN, newAttrMap,
190 map = impl.preProcessModify(token, entryDN, oldAttrMap,
195 impl.preProcessDelete(token, entryDN, oldAttrMa
215 postProcess(SSOToken token, String entryDN, String orgDN, AttrSet oldAttrSet, AttrSet newAttrSet, int operation, int objectType, boolean softDelete) argument
256 postProcess(SSOToken token, String entryDN, String orgDN, Map oldAttrMap, Map newAttrMap, int operation, int objectType, boolean softDelete) argument
299 preProcessModifyMemberShip(SSOToken token, String entryDN, String orgDN, Set members, int operation, int objectType) argument
340 postProcessModifyMemberShip(SSOToken token, String entryDN, String orgDN, Set members, int operation, int objectType) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DAddOperationBasis.java87 private DN entryDN; field in class:AddOperationBasis
138 entryDN = null;
157 * @param entryDN The DN for the entry.
165 DN entryDN, Map<ObjectClass,String> objectClasses,
172 this.entryDN = entryDN;
177 rawEntryDN = ByteString.valueOf(entryDN.toString());
228 entryDN = null;
239 if (entryDN == null)
241 entryDN
163 AddOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, DN entryDN, Map<ObjectClass,String> objectClasses, Map<AttributeType,List<Attribute>> userAttributes, Map<AttributeType,List<Attribute>> operationalAttributes) argument
[all...]
H A DCompareOperationBasis.java82 private DN entryDN; field in class:CompareOperationBasis
124 entryDN = null;
142 * @param entryDN The entry DN for this compare operation.
149 DN entryDN, AttributeType attributeType,
155 this.entryDN = entryDN;
160 rawEntryDN = ByteString.valueOf(entryDN.toString());
186 entryDN = null;
196 if (entryDN == null) {
199 entryDN
146 CompareOperationBasis( ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, DN entryDN, AttributeType attributeType, ByteString assertionValue) argument
[all...]
H A DGroupManager.java619 * @param entryDN The DN of the entry containing the definition of the group
625 public Group getGroupInstance(DN entryDN) argument
632 group = groupInstances.get(entryDN);
H A DModifyDNOperationBasis.java82 private DN entryDN; field in class:ModifyDNOperationBasis
138 entryDN = null;
158 * @param entryDN The current entry DN for this modify DN
168 DN entryDN, RDN newRDN, boolean deleteOldRDN,
174 this.entryDN = entryDN;
179 rawEntryDN = ByteString.valueOf(entryDN.toString());
216 entryDN = null;
228 if (entryDN == null)
230 entryDN
165 ModifyDNOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, DN entryDN, RDN newRDN, boolean deleteOldRDN, DN newSuperior) argument
[all...]
H A DModifyOperationBasis.java78 private DN entryDN; field in class:ModifyOperationBasis
123 entryDN = null;
138 * @param entryDN The entry DN for the modify operation.
145 DN entryDN, List<Modification> modifications)
150 this.entryDN = entryDN;
153 rawEntryDN = ByteString.valueOf(entryDN.toString());
181 entryDN = null;
189 if (entryDN == null){
191 entryDN
142 ModifyOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, DN entryDN, List<Modification> modifications) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DFIFOEntryCache.java226 public boolean containsEntry(DN entryDN) argument
228 if (entryDN == null) {
235 return dnMap.containsKey(entryDN);
247 public Entry getEntry(DN entryDN) argument
252 CacheEntry e = dnMap.get(entryDN);
273 public long getEntryID(DN entryDN) argument
278 CacheEntry e = dnMap.get(entryDN);
576 public void removeEntry(DN entryDN) argument
592 CacheEntry entry = dnMap.remove(entryDN);
808 DN entryDN
[all...]

Completed in 101 milliseconds

1234567891011>>