Searched defs:entry (Results 26 - 50 of 1191) sorted by relevance

1234567891011>>

/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DFakeAddOperation.java35 * information that stay in the entry in the database.
43 private Entry entry; field in class:FakeAddOperation
48 * @param csn The CSN when the entry was created.
49 * @param entry The entry that the ADD operation will create.
51 public FakeAddOperation(CSN csn, Entry entry) argument
54 this.entry = entry;
63 return new AddMsg(getCSN(), entry.getDN(),
64 EntryHistorical.getEntryUUID(entry),
[all...]
H A DFakeModdnOperation.java37 * information that stay in the entry in the database.
44 private Entry entry; field in class:FakeModdnOperation
49 * @param csn The CSN when the entry was last renamed.
50 * @param entry The entry that the MODDN operation will rename.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
55 this.entry = entry;
64 DN dn = entry.getDN();
66 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/makeldif/
H A DEntryWriter.java41 * Writes the provided entry to the appropriate target.
43 * @param entry The entry to be written.
45 * @return <CODE>true</CODE> if the entry writer will accept additional
49 * @throws IOException If a problem occurs while writing the entry to its
54 public boolean writeEntry(TemplateEntry entry) argument
60 * Notifies the entry writer that no more entries will be provided and that
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DSearchResultEntry.java38 * an entry that matches a given set of search criteria and should be
40 * When the search result entry contains attribute types only, the
42 * attributes. When the search result entry contains both attribute
54 // The set of controls associated with this search result entry.
60 * Creates a new search result entry based on the provided entry.
61 * The provided entry should have been a duplicate of a real entry
62 * so that any changes that may be made to this entry (e.g., by
63 * access control or plugins) will not impact the original entry
68 SearchResultEntry(Entry entry) argument
91 SearchResultEntry(Entry entry, List<Control> controls) argument
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/event/
H A DLDAPEntryChangedEvent.java33 * Method that describes that an entry has changed. This is used by the LDAP
34 * entry editors.
40 private Entry entry; field in class:LDAPEntryChangedEvent
45 * @param entry the entry that has been modified (the object contains the new
46 * values of the entry).
48 public LDAPEntryChangedEvent(Object source, Entry entry) argument
51 this.entry = entry;
55 * Returns the entry tha
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/
H A DLDAPEntryChangedEvent.java32 * Method that describes that an entry has changed. This is used by the LDAP
33 * entry editors.
39 private Entry entry; field in class:LDAPEntryChangedEvent
44 * @param entry the entry that has been modified (the object contains the new
45 * values of the entry).
47 public LDAPEntryChangedEvent(Object source, Entry entry) argument
50 this.entry = entry;
54 * Returns the entry tha
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/collections/
H A DLeastRecentlyUsed.java46 protected boolean removeEldestEntry(Map.Entry<T, V> entry) { argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/
H A DFakeAddOperation.java35 * information that stay in the entry in the database.
43 private Entry entry; field in class:FakeAddOperation
48 * @param csn The CSN when the entry was created.
49 * @param entry The entry that the ADD operation will create.
51 public FakeAddOperation(CSN csn, Entry entry) argument
54 this.entry = entry;
61 return new AddMsg(getCSN(), entry.getName(),
62 EntryHistorical.getEntryUUID(entry),
[all...]
H A DFakeModdnOperation.java37 * information that stay in the entry in the database.
44 private Entry entry; field in class:FakeModdnOperation
49 * @param csn The CSN when the entry was last renamed.
50 * @param entry The entry that the MODDN operation will rename.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
55 this.entry = entry;
62 DN dn = entry.getName();
64 EntryHistorical.getEntryUUID(entry),
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/makeldif/
H A DEntryWriter.java42 * Writes the provided entry to the appropriate target.
44 * @param entry The entry to be written.
46 * @return <CODE>true</CODE> if the entry writer will accept additional
50 * @throws IOException If a problem occurs while writing the entry to its
55 boolean writeEntry(TemplateEntry entry) argument
61 * Notifies the entry writer that no more entries will be provided and that
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DSearchResultEntry.java37 * an entry that matches a given set of search criteria and should be
39 * When the search result entry contains attribute types only, the
41 * attributes. When the search result entry contains both attribute
53 /** The set of controls associated with this search result entry. */
59 * Creates a new search result entry based on the provided entry.
60 * The provided entry should have been a duplicate of a real entry
61 * so that any changes that may be made to this entry (e.g., by
62 * access control or plugins) will not impact the original entry
67 SearchResultEntry(Entry entry) argument
90 SearchResultEntry(Entry entry, List<Control> controls) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DRandomPasswordGeneratorTestCase.java198 * Tests with an invalid configuration entry.
200 * @param entry The invalid configuration entry to use for testing.
207 public void testInvalidConfigurations(Entry entry) argument
213 entry);
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DUpdateLogService.java25 * Log a new update entry in the repo
27 * @param entry a new update entry.
30 public void logUpdate(UpdateLogEntry entry) throws ResourceException; argument
33 * Update an existing update entry in the repo
35 * @param entry the entry to update.
38 public void updateUpdate(UpdateLogEntry entry) throws ResourceException; argument
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/collections/
H A DLeastRecentlyUsed.java46 protected boolean removeEldestEntry(Map.Entry<T, V> entry) { argument
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DCollectiveAttributeSubentriesVirtualAttributeProvider.java98 public Set<AttributeValue> getValues(Entry entry, argument
103 if (!entry.isSubentry() && !entry.isLDAPSubentry())
106 .getCollectiveSubentries(entry);
H A DPasswordPolicySubentryVirtualAttributeProvider.java106 public Set<AttributeValue> getValues(Entry entry, argument
109 if (!entry.isSubentry() && !entry.isLDAPSubentry())
115 policy = AuthenticationPolicy.forUser(entry, false);
127 entry.getDN().toString(),
138 TRACER.debugError("No applicable password policy for user %s", entry
157 + "not a password policy", policy.getDN().toString(), entry
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DSubtreeSpecificationSet.java46 * whether or not an entry is within the scope of one or more
88 * Returns {@code true} if the specified entry is within the scope
91 * @param entry The entry to be checked for containment.
94 * entry.
96 public boolean isWithinScope(Entry entry) argument
100 if (subtreeSpecification.isWithinScope(entry))
/forgerock/opendj-b2.6/src/server/org/opends/server/workflowelement/localbackend/
H A DLocalBackendCompareOperation.java53 * specified entry in the Directory Server contains a given attribute-value
79 * The DN of the entry to compare.
84 * The entry to be compared.
86 protected Entry entry = null; field in class:LocalBackendCompareOperation
104 * Retrieves the entry to target with the compare operation.
106 * @return The entry to target with the compare operation, or
107 * <CODE>null</CODE> if the entry is not yet available.
112 return entry;
151 // Process the entry DN to convert it from the raw form to the form
160 // If the target entry i
[all...]
/forgerock/opendj2/src/server/org/opends/server/api/
H A DSubentryChangeListener.java72 * @param entry subentry being added to the server.
76 public void checkSubentryAddAcceptable(Entry entry) argument
82 * @param entry subentry being deleted in the server.
86 public void checkSubentryDeleteAcceptable(Entry entry) argument
115 * @param entry The subentry that was added to the
118 public void handleSubentryAdd(Entry entry); argument
124 * @param entry The subentry that was removed from the
127 public void handleSubentryDelete(Entry entry); argument
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DAciLDAPOperationContainer.java44 * @param entry The entry for evaluation.
47 int rights, Entry entry)
49 super(operation, rights, entry);
66 * Constructor interface for evaluation general purpose Operation, entry and
70 * @param e The entry for evaluation.
85 * @param e An entry built especially for evaluation.
99 * @param e An entry built especially for evaluation.
144 * @param entry The entry t
46 AciLDAPOperationContainer(Operation operation, int rights, Entry entry) argument
146 AciLDAPOperationContainer(ModifyDNOperation operation, int rights, Entry entry) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DIndexer.java52 * Generate the set of index keys for an entry.
54 * @param entry The entry.
57 public abstract void indexEntry(Entry entry, Set<byte[]> keys); argument
61 * to be deleted for an entry that has been replaced.
63 * @param oldEntry The original entry contents.
64 * @param newEntry The new entry contents.
72 * to be deleted for an entry that was modified.
74 * @param oldEntry The original entry contents.
75 * @param newEntry The new entry content
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DCollectiveAttributeSubentriesVirtualAttributeProvider.java74 public Set<AttributeValue> getValues(Entry entry, argument
79 if (!entry.isSubentry() && !entry.isLDAPSubentry())
82 .getCollectiveSubentries(entry);
H A DPasswordExpirationTimeVirtualAttributeProvider.java77 public Set<AttributeValue> getValues(Entry entry, argument
81 if (!entry.isSubentry() && !entry.isLDAPSubentry())
83 long expirationTime = getPasswordExpirationTime(entry);
124 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
127 return !entry.isSubentry()
128 && !entry.isLDAPSubentry()
129 && getPasswordExpirationTime(entry) != -1;
135 * @param entry LDAP entry
138 getPasswordExpirationTime(Entry entry) argument
[all...]
H A DPasswordPolicySubentryVirtualAttributeProvider.java82 public Set<AttributeValue> getValues(Entry entry, argument
85 if (!entry.isSubentry() && !entry.isLDAPSubentry())
91 policy = AuthenticationPolicy.forUser(entry, false);
103 entry.getDN().toString(),
114 TRACER.debugError("No applicable password policy for user %s", entry
133 + "not a password policy", policy.getDN().toString(), entry
/forgerock/opendj2/src/server/org/opends/server/replication/common/
H A DChangelogBaseDNVirtualAttributeProvider.java43 * changelog attribute of the root DSE entry that contain the baseDn of the ECL.
78 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument

Completed in 753 milliseconds

1234567891011>>