Searched defs:entry (Results 201 - 225 of 1191) sorted by relevance

1234567891011>>

/forgerock/openam/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/openam/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/opendj-b2.6/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/opendj-b2.6/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
/forgerock/opendj-b2.6/src/server/org/opends/server/plugins/
H A DEntryUUIDPlugin.java55 * attribute to an entry whenever it is added or imported as per RFC 4530. For
58 * the UUID will be constructed from the entry DN using a repeatable algorithm.
98 "( 1.3.6.1.1.16.4 NAME 'entryUUID' DESC 'UUID of the entry' " +
163 doLDIFImport(LDIFImportConfig importConfig, Entry entry) argument
165 // See if the entry being imported already contains an entryUUID attribute.
167 List<Attribute> uuidList = entry.getAttribute(entryUUIDType);
177 byte[] dnBytes = getBytes(entry.getDN().toNormalizedString());
185 entry.putAttribute(entryUUIDType, uuidList);
201 // See if the entry being added already contains an entryUUID attribute.
221 // Add the attribute to the entry an
[all...]
H A DPasswordPolicyImportPlugin.java85 // The attribute type used to specify the password policy for an entry.
333 doLDIFImport(LDIFImportConfig importConfig, Entry entry) argument
335 // Check if this entry is a password policy subentry
337 if ((entry.isSubentry() || entry.isLDAPSubentry()) &&
338 entry.isPasswordPolicySubentry())
342 new SubentryPasswordPolicy(new SubEntry(entry));
356 // See if the entry explicitly states the password policy that it should
358 List<Attribute> attrList = entry.getAttribute(customPolicyAttribute);
376 String.valueOf(entry
[all...]
H A DSevenBitCleanPlugin.java136 doLDIFImport(LDIFImportConfig importConfig, Entry entry) argument
142 // Make sure that the entry is within the scope of this plugin. While
145 // is defined, then assume that the entry is in scope.
152 if (baseDN.isAncestorOf(entry.getDN()))
161 // The entry is out of scope, so we won't process it.
170 List<Attribute> attrList = entry.getAttribute(t);
207 // If the entry is within the scope of this plugin, then make sure all
273 // If the target entry is within the scope of this plugin, then make sure
351 // If the target entry is within the scope of this plugin, then make sure
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DSearchResultEntryProtocolOp.java60 * This class defines the structures and methods for an LDAP search result entry
67 // The set of attributes for this search entry.
70 // The DN for this search entry.
73 // The underlying search result entry.
74 private SearchResultEntry entry; field in class:SearchResultEntryProtocolOp
82 * Creates a new LDAP search result entry protocol op with the specified DN
85 * @param dn The DN for this search result entry.
95 * Creates a new LDAP search result entry protocol op with the specified DN
98 * @param dn The DN for this search result entry.
99 * @param attributes The set of attributes for this search result entry
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/common/
H A DChangelogBaseDNVirtualAttributeProvider.java55 * changelog attribute of the root DSE entry that contain the baseDn of the ECL.
125 public Set<AttributeValue> getValues(Entry entry,VirtualAttributeRule rule) argument
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/opendj-b2.6/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/opendj-b2.6/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/opendj-b2.6/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/opendj-b2.6/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/opendj-b2.6/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/opendj-b2.6/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/src/quicksetup/org/opends/quicksetup/util/
H A DZipExtractor.java55 /** Path separator for zip file entry names on Windows and *nix. */
159 * @param removeFirstPath when true removes each zip entry's initial path
160 * when copied to the destination folder. So for instance if the zip entry's
186 ZipEntry entry = zipIn.getNextEntry();
187 while (entry != null) {
196 String name = entry.getName();
203 "zip entry name does not contain a path separator");
209 copyZipEntry(entry, destination, zipIn,
215 INFO_ERROR_COPYING.get(entry.getName()), ioe);
224 entry
272 copyZipEntry(ZipEntry entry, File destination, ZipInputStream is, int ratioBeforeCompleted, int ratioWhenCompleted, Map<String, ArrayList<String>> permissions) argument
[all...]

Completed in 81 milliseconds

1234567891011>>