Searched defs:entry (Results 276 - 300 of 1191) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj2.6.2/src/server/org/opends/server/replication/common/
H A DFirstChangeNumberVirtualAttributeProvider.java64 * to define their own values that will be inserted into any entry that matches
127 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
130 return entry.getDN().isNullDN();
138 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument
H A DLastChangeNumberVirtualAttributeProvider.java64 * to define their own values that will be inserted into any entry that matches
126 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
129 return entry.getDN().isNullDN();
138 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument
H A DLastCookieVirtualProvider.java59 * This class implements a virtual attribute provider in the root-dse entry
107 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
110 return entry.getDN().isNullDN();
129 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/plugin/
H A DFractionalLDIFImportPlugin.java62 * root entry of the domain is compliant with the fractional configuration of
65 * - flush the fractional configuration of the domain in the root entry
174 * @param entry An imported entry of the imported domain
176 * passed entry. Null if no configuration is found for the domain
180 Entry entry) throws Exception {
198 // Find the configuration for domain the entry is part of
205 // Is the entry a sub entry of the replicated domain main entry
179 getStaticReplicationDomainFractionalConfig( Entry entry) argument
246 doLDIFImport( LDIFImportConfig importConfig, Entry entry) argument
470 flushFractionalConfigIntoEntry(FractionalConfig localFractionalConfig, Entry entry) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/
H A DLDIFDiff.java459 Entry entry = reader.readEntry(checkSchema);
460 if (entry == null)
465 if (! ignoreEntries.contains(entry.getDN()))
467 sourceMap.put(entry.getDN(), entry);
508 Entry entry = reader.readEntry(checkSchema);
509 if (entry == null)
514 if (! ignoreEntries.contains(entry.getDN()))
516 targetMap.put(entry.getDN(), entry);
770 writeAdd(LDIFWriter writer, Entry entry) argument
789 writeDelete(LDIFWriter writer, Entry entry) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/makeldif/
H A DMakeLDIF.java434 * Writes the provided entry to the appropriate target.
436 * @param entry The entry to be written.
438 * @return <CODE>true</CODE> if the entry writer will accept more entries, or
441 * @throws IOException If a problem occurs while writing the entry to its
446 public boolean writeEntry(TemplateEntry entry) argument
451 if (entry.getDN() != null)
453 ldifWriter.writeTemplateEntry(entry);
464 AttributeType[] rdnAttrs = entry.getTemplate().getRDNAttributes();
468 if (entry
[all...]
H A DMakeLDIFInputStream.java64 // The byte array that will hold the LDIF representation of the next entry to
212 public boolean writeEntry(TemplateEntry entry) argument
219 if (entryQueue.offer(entry, 500, TimeUnit.MILLISECONDS))
255 * Retrieves the next entry and puts it in the entry byte buffer.
257 * @return <CODE>true</CODE> if the next entry is available, or
263 TemplateEntry entry = entryQueue.poll();
264 while (entry == null)
272 entry = entryQueue.poll();
273 if (entry
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DVirtualAttributeRule.java249 * provided entry, taking into account the eligibility requirements
252 * @param entry The entry for which to make the determination.
255 * to generate values for the entry, or {@code false} if
258 public boolean appliesToEntry(Entry entry) argument
263 // the entry already has virtual values.
266 entry.hasAttribute(attributeType))
271 // If there are any base DNs defined, then the entry must be below
273 DN entryDN = entry.getDN();
292 // If there are any search filters defined, then the entry mus
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/operation/
H A DPreOperationSearchOperation.java164 * Returns the provided entry to the client.
166 * @param entry The entry that should be returned.
167 * @param controls The set of controls to include with the entry
169 * included with the entry).
177 public boolean returnEntry(Entry entry, List<Control> controls); argument
/forgerock/opendj2.6.2/src/server/org/opends/server/workflowelement/localbackend/
H A DLocalBackendDeleteOperation.java55 * This class defines an operation used to delete an entry in a local backend
87 * The DN of the entry to be deleted.
92 * The entry to be deleted.
94 protected Entry entry; field in class:LocalBackendDeleteOperation
102 * Creates a new operation that may be used to delete an entry from a
116 * Retrieves the entry to be deleted.
118 * @return The entry to be deleted, or <CODE>null</CODE> if the entry is not
124 return entry;
156 // Process the entry D
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/
H A DTestJebFormat.java136 * Test entry IDs.
165 * Test entry ID lists.
187 * Encodes this entry using the V3 encoding.
192 * to encode the entry.
194 private void encodeV1(Entry entry, ByteStringBuilder buffer) argument
201 byte[] dnBytes = getBytes(entry.getDN().toString());
209 for (String ocName : entry.getObjectClasses().values())
212 if(i < entry.getObjectClasses().values().size())
223 encodeV1Attributes(buffer, entry.getUserAttributes());
228 encodeV1Attributes(buffer, entry
288 encodeV2(Entry entry, ByteStringBuilder buffer, EntryEncodeConfig config) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestChangeNotificationListener.java84 Entry entry)
95 Entry entry)
83 handleAddOperation(PostResponseAddOperation addOperation, Entry entry) argument
94 handleDeleteOperation(PostResponseDeleteOperation deleteOperation, Entry entry) argument
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DHistoricalTest.java124 * and written to an operational attribute of the entry.
133 // Add a test entry.
149 // Modify the test entry to give it some history.
191 // Read the entry back to get its history operational attribute.
193 Entry entry = DirectoryServer.getEntry(dn);
195 List<Attribute> attrs = EntryHistorical.getHistoricalAttr(entry);
199 EntryHistorical hist = EntryHistorical.newInstanceFromEntry(entry);
220 // Read the entry back to get its history operational attribute.
221 entry = DirectoryServer.getEntry(dn);
222 hist = EntryHistorical.newInstanceFromEntry(entry);
486 assertFakeOperations(final DN dn1, Entry entry, Iterable<FakeOperation> ops, int assertCount) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/
H A DTestJebFormat.java135 * Test entry IDs.
164 * Test entry ID lists.
186 * Encodes this entry using the V3 encoding.
191 * to encode the entry.
193 private void encodeV1(Entry entry, ByteStringBuilder buffer) argument
200 byte[] dnBytes = getBytes(entry.getDN().toString());
208 for (String ocName : entry.getObjectClasses().values())
211 if(i < entry.getObjectClasses().values().size())
222 encodeV1Attributes(buffer, entry.getUserAttributes());
227 encodeV1Attributes(buffer, entry
287 encodeV2(Entry entry, ByteStringBuilder buffer, EntryEncodeConfig config) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/je/
H A DReplicationDbEnvTest.java136 entry(baseDN, generationId));
140 .containsExactly(entry(baseDN, new HashSet<Integer>(replicas)));
149 .containsExactly(entry(baseDN, offlineReplicas));
157 private void put(Map<byte[], byte[]> map, Entry<byte[], byte[]> entry) argument
159 map.put(entry.getKey(), entry.getValue());
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/
H A DTestJebFormat.java136 * Test entry IDs.
165 * Test entry ID lists.
187 * Encodes this entry using the V3 encoding.
192 * to encode the entry.
194 private void encodeV1(Entry entry, ByteStringBuilder buffer) argument
201 byte[] dnBytes = getBytes(entry.getDN().toString());
209 for (String ocName : entry.getObjectClasses().values())
212 if(i < entry.getObjectClasses().values().size())
223 encodeV1Attributes(buffer, entry.getUserAttributes());
228 encodeV1Attributes(buffer, entry
288 encodeV2(Entry entry, ByteStringBuilder buffer, EntryEncodeConfig config) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/core/
H A DTestChangeNotificationListener.java84 Entry entry)
95 Entry entry)
83 handleAddOperation(PostResponseAddOperation addOperation, Entry entry) argument
94 handleDeleteOperation(PostResponseDeleteOperation deleteOperation, Entry entry) argument
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DHistoricalTest.java124 * and written to an operational attribute of the entry.
133 // Add a test entry.
149 // Modify the test entry to give it some history.
191 // Read the entry back to get its history operational attribute.
193 Entry entry = DirectoryServer.getEntry(dn);
195 List<Attribute> attrs = EntryHistorical.getHistoricalAttr(entry);
199 EntryHistorical hist = EntryHistorical.newInstanceFromEntry(entry);
220 // Read the entry back to get its history operational attribute.
221 entry = DirectoryServer.getEntry(dn);
222 hist = EntryHistorical.newInstanceFromEntry(entry);
486 assertFakeOperations(final DN dn1, Entry entry, Iterable<FakeOperation> ops, int assertCount) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DAuthenticatedUsers.java191 * @param entry The entry that was added to the server.
195 Entry entry)
209 * @param entry The entry that was removed from the
214 Entry entry)
217 // or authorized as the user whose entry has been deleted and
224 userMap.removeSubtree(entry.getDN(), arraySet);
236 String.valueOf(entry.getDN()));
251 * @param oldEntry The entry befor
193 handleAddOperation( PostResponseAddOperation addOperation, Entry entry) argument
212 handleDeleteOperation( PostResponseDeleteOperation deleteOperation, Entry entry) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DEntryUUIDVirtualAttributeProvider.java56 * DSE entries). Real user data should have entry UUID values generated at the
108 public Set<AttributeValue> getValues(Entry entry, argument
111 String normDNString = entry.getDN().toNormalizedString();
126 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
138 public boolean hasValue(Entry entry, VirtualAttributeRule rule, argument
143 String normalizedDN = entry.getDN().toNormalizedString();
167 public ConditionResult matchesSubstring(Entry entry, argument
183 public ConditionResult greaterThanOrEqualTo(Entry entry, argument
197 public ConditionResult lessThanOrEqualTo(Entry entry, argument
211 public ConditionResult approximatelyEqualTo(Entry entry, argument
[all...]
H A DGoverningStructureRuleVirtualAttributeProvider.java98 public Set<AttributeValue> getValues(Entry entry, argument
101 DITStructureRule ditRule = getDITStructureRule(entry);
119 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
121 return getDITStructureRule(entry)!=null;
130 public ConditionResult matchesSubstring(Entry entry, argument
146 public ConditionResult greaterThanOrEqualTo(Entry entry, argument
160 public ConditionResult lessThanOrEqualTo(Entry entry, argument
174 public ConditionResult approximatelyEqualTo(Entry entry, argument
214 //Checks if the entry matches the nameform.
217 Entry entry)
215 matchesNameForm(NameForm nameForm, AcceptRejectWarn structuralPolicy, Entry entry) argument
254 getDITStructureRule(Entry entry) argument
[all...]
H A DHasSubordinatesVirtualAttributeProvider.java105 public Set<AttributeValue> getValues(Entry entry, argument
108 Backend backend = DirectoryServer.getBackend(entry.getDN());
112 ConditionResult ret = backend.hasSubordinates(entry.getDN());
138 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
140 Backend backend = DirectoryServer.getBackend(entry.getDN());
144 ConditionResult ret = backend.hasSubordinates(entry.getDN());
164 public boolean hasValue(Entry entry, VirtualAttributeRule rule, argument
167 Backend backend = DirectoryServer.getBackend(entry.getDN());
171 ConditionResult ret = backend.hasSubordinates(entry.getDN());
196 public ConditionResult matchesSubstring(Entry entry, argument
212 greaterThanOrEqualTo(Entry entry, VirtualAttributeRule rule, AttributeValue value) argument
226 lessThanOrEqualTo(Entry entry, VirtualAttributeRule rule, AttributeValue value) argument
240 approximatelyEqualTo(Entry entry, VirtualAttributeRule rule, AttributeValue value) argument
[all...]
H A DNumSubordinatesVirtualAttributeProvider.java106 public Set<AttributeValue> getValues(Entry entry, argument
109 Backend backend = DirectoryServer.getBackend(entry.getDN());
113 long count = backend.numSubordinates(entry.getDN(), false);
139 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
141 Backend backend = DirectoryServer.getBackend(entry.getDN());
145 return backend.numSubordinates(entry.getDN(), false) >= 0;
164 public boolean hasValue(Entry entry, VirtualAttributeRule rule, argument
167 Backend backend = DirectoryServer.getBackend(entry.getDN());
171 long count = backend.numSubordinates(entry.getDN(), false);
196 public ConditionResult matchesSubstring(Entry entry, argument
212 approximatelyEqualTo(Entry entry, VirtualAttributeRule rule, AttributeValue value) argument
[all...]
H A DStructuralObjectClassVirtualAttributeProvider.java97 public Set<AttributeValue> getValues(Entry entry, argument
102 entry.getStructuralObjectClass().getNameOrOID());
112 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
114 //A structural object class is always present in an entry.
124 public ConditionResult matchesSubstring(Entry entry, argument
140 public ConditionResult greaterThanOrEqualTo(Entry entry, argument
154 public ConditionResult lessThanOrEqualTo(Entry entry, argument
168 public ConditionResult approximatelyEqualTo(Entry entry, argument
H A DSubschemaSubentryVirtualAttributeProvider.java97 public Set<AttributeValue> getValues(Entry entry, argument
117 public ConditionResult matchesSubstring(Entry entry, argument
133 public ConditionResult greaterThanOrEqualTo(Entry entry, argument
147 public ConditionResult lessThanOrEqualTo(Entry entry, argument
161 public ConditionResult approximatelyEqualTo(Entry entry, argument

Completed in 112 milliseconds

<<11121314151617181920>>