Searched defs:entry (Results 176 - 200 of 1191) sorted by relevance

1234567891011>>

/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DPresenceIndexer.java90 * Generate the set of index keys for an entry.
92 * @param entry The entry.
95 public void indexEntry(Entry entry, Set<byte[]> keys) argument
98 entry.getAttribute(attributeType);
112 * to be deleted for an entry that has been replaced.
114 * @param oldEntry The original entry contents.
115 * @param newEntry The new entry contents.
143 * to be deleted for an entry that was modified.
145 * @param oldEntry The original entry content
[all...]
H A DSortValues.java42 * are associated with a sort order for a given entry. Any or all of the
43 * attribute values may be {@code null} if the entry does not include any values
56 // The entry ID for the entry associated with this sort values.
67 * @param entryID The entry ID for the entry associated with this set of
83 * @param entryID The entry ID for the entry associated with this set of
85 * @param entry The entry containin
89 SortValues(EntryID entryID, Entry entry, SortOrder sortOrder) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java63 // The DN of the entry containing the group definition.
85 * @param groupDN The DN of the entry containing the group definition.
103 * @param groupDN The DN of the entry containing the group definition.
353 * Adds the provided entry to the set of results that should be returned for
356 * @param entry The entry to add to the set of results that should be
359 * @return {@code true} if the entry was added to the result set, or
365 final boolean addResult(Entry entry) argument
369 return resultQueue.offer(entry, 10, TimeUnit.SECONDS);
H A DUserDefinedVirtualAttributeProvider.java47 * to define their own values that will be inserted into any entry that matches
121 public Set<AttributeValue> getValues(Entry entry, argument
/forgerock/opendj2-hg/src/server/org/opends/server/replication/common/
H A DFirstChangeNumberVirtualAttributeProvider.java75 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
78 return entry.getDN().isNullDN();
83 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument
H A DLastChangeNumberVirtualAttributeProvider.java75 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
78 return entry.getDN().isNullDN();
83 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument
H A DLastCookieVirtualProvider.java45 * This class implements a virtual attribute provider in the root-dse entry
74 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
77 return entry.getDN().isNullDN();
90 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DCacheEntry.java35 * This class defines a Directory Server cache entry, which is simply
36 * used to store an entry with its associated backend and entry ID.
46 // The backend with which this cache entry is associated.
49 // The entry itself.
50 private Entry entry; field in class:CacheEntry
52 // The entry ID for the entry within the backend.
58 * Creates a new cache entry with the provided information.
60 * @param entry Th
64 CacheEntry(Entry entry, Backend backend, long entryID) argument
90 setEntry(Entry entry) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DAuthenticationPolicyState.java50 * The authentication policy context associated with a user's entry, which is
78 * The user entry.
101 * the value of the specified attribute from the provided entry as a boolean.
103 * @param entry
104 * The entry whose attribute is to be parsed as a boolean.
109 * in the entry.
113 protected static final ConditionResult getBoolean(final Entry entry, argument
116 final List<Attribute> attrList = entry.getAttribute(attributeType);
134 TRACER.debugInfo("Attribute %s resolves to true for user entry "
135 + "%s", attributeType.getNameOrOID(), entry
196 getGeneralizedTime(final Entry entry, final AttributeType attributeType) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DID2CIndexer.java77 * Generate the set of index keys for an entry.
79 * @param entry The entry.
82 public void indexEntry(Entry entry, Set<byte[]> addKeys) argument
84 // The superior entry IDs are in the entry attachment.
85 ArrayList ids = (ArrayList)entry.getAttachment();
87 // Skip the entry's own ID.
101 * to be deleted for an entry that has been replaced.
103 * @param oldEntry The original entry content
[all...]
H A DID2SIndexer.java76 * Generate the set of index keys for an entry.
78 * @param entry The entry.
81 public void indexEntry(Entry entry, Set<byte[]> addKeys) argument
83 // The superior entry IDs are in the entry attachment.
84 ArrayList ids = (ArrayList)entry.getAttachment();
86 // Skip the entry's own ID.
100 * to be deleted for an entry that has been replaced.
102 * @param oldEntry The original entry content
[all...]
H A DPresenceIndexer.java91 * Generate the set of index keys for an entry.
93 * @param entry The entry.
96 public void indexEntry(Entry entry, Set<byte[]> keys) argument
99 entry.getAttribute(attributeType);
113 * to be deleted for an entry that has been replaced.
115 * @param oldEntry The original entry contents.
116 * @param newEntry The new entry contents.
144 * to be deleted for an entry that was modified.
146 * @param oldEntry The original entry content
[all...]
H A DSortValues.java43 * are associated with a sort order for a given entry. Any or all of the
44 * attribute values may be {@code null} if the entry does not include any values
57 // The entry ID for the entry associated with this sort values.
68 * @param entryID The entry ID for the entry associated with this set of
84 * @param entryID The entry ID for the entry associated with this set of
86 * @param entry The entry containin
90 SortValues(EntryID entryID, Entry entry, SortOrder sortOrder) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/utils/
H A DLdapTokenAttributeConversion.java74 Entry entry = new LinkedHashMapEntry(generateTokenDN(token));
75 addObjectClass(entry);
84 entry.addAttribute(key, type.name());
91 entry.addAttribute(key, dateString);
94 entry.addAttribute(key, array);
97 entry.addAttribute(key, value);
101 entry.addAttribute(key, value);
107 return entry;
117 * @param entry Non null entry t
121 mapFromEntry(Entry entry) argument
173 tokenFromEntry(Entry entry) argument
201 addObjectClass(Entry entry) argument
216 stripObjectClass(Entry entry) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DAuthenticationPolicyState.java45 * The authentication policy context associated with a user's entry, which is
70 * The user entry.
93 * the value of the specified attribute from the provided entry as a boolean.
95 * @param entry
96 * The entry whose attribute is to be parsed as a boolean.
101 * in the entry.
105 protected static ConditionResult getBoolean(final Entry entry, argument
108 final List<Attribute> attrList = entry.getAttribute(attributeType);
125 logger.trace("Attribute %s resolves to true for user entry %s",
126 attributeType.getNameOrOID(), entry
185 getGeneralizedTime(final Entry entry, final AttributeType attributeType) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DDynamicGroupMemberList.java62 /** The DN of the entry containing the group definition. */
86 * @param groupDN The DN of the entry containing the group definition.
104 * @param groupDN The DN of the entry containing the group definition.
344 * Adds the provided entry to the set of results that should be returned for
347 * @param entry The entry to add to the set of results that should be
350 * @return {@code true} if the entry was added to the result set, or
356 final boolean addResult(Entry entry) argument
360 return resultQueue.offer(entry, 10, TimeUnit.SECONDS);
H A DUserDefinedVirtualAttributeProvider.java44 * to define their own values that will be inserted into any entry that matches
103 public Attribute getValues(Entry entry, VirtualAttributeRule rule) argument
/forgerock/openam-v13/openam-ldap-utils/src/main/java/org/forgerock/openam/ldap/
H A DLDAPRequests.java63 * @param name the DN of the entry to modify.
76 * @param dn the DN of the entry to modify.
122 * Returns a single-entry search request for the given entry DN and attributes.
125 * @param dn the dn of the entry to read.
127 * @return the search request for the given entry.
137 * Returns a single-entry search request for the given entry DN and attributes.
140 * @param dn the dn of the entry to read.
142 * @return the search request for the given entry
204 newAddRequest(final Entry entry) argument
[all...]
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAMAuthenticationAuditEventBuilder.java54 for (AuthenticationAuditEntry entry : entries) {
55 convertedEntries.add(entry.toMap());
64 * @param authenticationAuditEntry The single entry object representing the fields to be audited in the "entries"
68 public AMAuthenticationAuditEventBuilder entry(AuthenticationAuditEntry authenticationAuditEntry) { method in class:AMAuthenticationAuditEventBuilder
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/
H A DFirstChangeNumberVirtualAttributeProvider.java71 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
74 return entry.getName().isRootDN();
79 public Attribute getValues(Entry entry,VirtualAttributeRule rule) argument
H A DLastChangeNumberVirtualAttributeProvider.java71 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
74 return entry.getName().isRootDN();
79 public Attribute getValues(Entry entry,VirtualAttributeRule rule) argument
H A DLastCookieVirtualProvider.java43 * This class implements a virtual attribute provider in the root-dse entry
66 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
69 return entry.getName().isRootDN();
81 public Attribute getValues(Entry entry, VirtualAttributeRule rule) argument
/forgerock/opendj-v3/opendj-config/src/test/java/org/forgerock/opendj/config/
H A DAdminTestCase.java51 for (Entry entry : entries) {
52 when(configRepository.getEntry(entry.getName())).thenReturn(entry);
53 when(configRepository.hasEntry(entry.getName())).thenReturn(true);
58 /** Returns the name used for the provided entry (the value of the cn attribute). */
59 protected final String entryName(final Entry entry) { argument
60 return entry.getName().rdn().getFirstAVA().getAttributeValue().toString();
63 /** Gets the named parent configuration corresponding to the provided entry. */
64 protected final TestParentCfg getParentCfg(final Entry entry, final ServerManagementContext serverContext) argument
66 return getParentCfg(entryName(entry), serverContex
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/protocols/ldap/
H A DTestSearchResultEntryProtocolOp.java118 * and back again preserves the entry contents.
120 * @param from The entry to undergo the transformation.
138 * back to Entry preserves the entry contents.
140 * @param from The entry to undergo the transformation.
184 public void testToString(Entry entry) throws Exception argument
187 new SearchResultEntryProtocolOp(new SearchResultEntry(entry));
194 public void testEncodeDecode(Entry entry) throws Exception argument
200 new SearchResultEntryProtocolOp(new SearchResultEntry(entry));
227 public void testTooManyElements(Entry entry) throws Exception argument
233 writer.writeOctetString(entry
248 testTooFewElements(Entry entry) argument
267 testInvalidElement1(Entry entry) argument
[all...]
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DReconFeeder.java71 ResultEntry entry = entriesIter.next();
73 createTask(entry).call();
106 ResultEntry entry = entriesIter.next();
107 completionService.submit(createTask(entry));
128 abstract Callable createTask(ResultEntry entry) throws SynchronizationException; argument

Completed in 97 milliseconds

1234567891011>>