Searched defs:entry (Results 101 - 125 of 1191) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/api/query/
H A DPartialToken.java43 private final Map<CoreTokenField, Object> entry; field in class:PartialToken
47 * @param entry Non null, possibly empty collection.
49 public PartialToken(Map<CoreTokenField, Object> entry) { argument
50 Reject.ifNull(entry);
51 this.entry = entry;
63 entry = new HashMap<CoreTokenField, Object>(token.entry);
64 entry.put(field, value);
73 return Collections.unmodifiableSet(entry
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/ldap/
H A DEntryConverter.java27 * Converts an entry to the return type.
28 * @param entry The LDAP entry.
32 T convert(Entry entry, String[] requestedAttributes); argument
H A DEntryPartialTokenConverter.java27 * A converter to convert an LDAP entry to a PartialToken.
40 public PartialToken convert(Entry entry, String[] requestedAttributes) { argument
41 return new PartialToken(attributeConversion.mapFromEntry(entry));
H A DEntryStringConverter.java25 * An entry converter that extracts a single string value from the entry.
30 public String convert(Entry entry, String[] requestedAttributes) { argument
32 return entry.getAttribute(requestedAttributes[0]).firstValueAsString();
H A DEntryTokenConverter.java28 * A converter to convert an LDAP entry to a Token.
41 public Token convert(Entry entry, String[] requestedAttributes) { argument
42 return attributeConversion.tokenFromEntry(entry);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DSubentryChangeListener.java73 * @param entry subentry being added to the server.
77 void checkSubentryAddAcceptable(Entry entry) argument
83 * @param entry subentry being deleted in the server.
87 void checkSubentryDeleteAcceptable(Entry entry) argument
116 * @param entry The subentry that was added to the
119 void handleSubentryAdd(Entry entry); argument
125 * @param entry The subentry that was removed from the
128 void handleSubentryDelete(Entry entry); argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/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/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DCollectiveAttributeSubentriesVirtualAttributeProvider.java72 public Attribute getValues(Entry entry, VirtualAttributeRule rule) argument
76 if (!entry.isSubentry() && !entry.isLDAPSubentry())
79 .getCollectiveSubentries(entry);
H A DPasswordExpirationTimeVirtualAttributeProvider.java71 public Attribute getValues(Entry entry, VirtualAttributeRule rule) argument
74 if (!entry.isSubentry() && !entry.isLDAPSubentry())
76 long expirationTime = getPasswordExpirationTime(entry);
113 public boolean hasValue(Entry entry, VirtualAttributeRule rule) argument
116 return !entry.isSubentry()
117 && !entry.isLDAPSubentry()
118 && getPasswordExpirationTime(entry) != -1;
124 * @param entry LDAP entry
127 getPasswordExpirationTime(Entry entry) argument
[all...]
H A DPasswordPolicySubentryVirtualAttributeProvider.java72 public Attribute getValues(Entry entry, VirtualAttributeRule rule) argument
74 if (!entry.isSubentry() && !entry.isLDAPSubentry())
80 policy = AuthenticationPolicy.forUser(entry, false);
89 entry.getName());
96 logger.trace("No applicable password policy for user %s", entry.getName());
109 + "not a password policy", policy.getDN(), entry.getName());
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/
H A DBufferedIterator.java47 public void add(T entry) { argument
48 queue.add(entry);
51 public void add(List<T> entry) { argument
52 queue.addAll(entry);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DIPDPCache.java34 public boolean addEntry(String key, IPDPCacheEntry entry); argument
H A DPDPCache.java51 public boolean addEntry(String key, IPDPCacheEntry entry) { argument
52 return _cache.put(key, entry) != null;
64 IPDPCacheEntry entry = (IPDPCacheEntry)_cache.get(key);
65 return entry;
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/indextree/
H A DIndexChangeHandler.java57 public boolean handleEntry(SearchResultEntry entry) { argument
62 control = entry.getControl(
73 String dn = entry.getName().toString();
78 Attribute attributes = entry.getAttribute(AttributeDescription.valueOf("sunxmlKeyValue"));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/
H A DChangelogBaseDNVirtualAttributeProvider.java43 * changelog attribute of the root DSE entry that contain the baseDn of the ECL.
73 public Attribute getValues(Entry entry, VirtualAttributeRule rule) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DCacheEntry.java30 * This class defines a Directory Server cache entry, which is simply
31 * used to store an entry with its associated backend and entry ID.
41 /** ID of the backend with which this cache entry is associated. */
44 /** The entry itself. */
45 private final Entry entry; field in class:CacheEntry
47 /** The entry ID for the entry within the backend. */
51 * Creates a new cache entry with the provided information.
53 * @param entry Th
57 CacheEntry(Entry entry, String backendID, long entryID) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/forgerock/opendj/config/server/
H A DAdminTestCaseUtils.java73 * Decodes a configuration entry into the required type of server
80 * @param entry
81 * An entry containing the configuration to be decoded.
84 * If the entry could not be decoded.
87 AbstractManagedObjectDefinition<C, S> definition, Entry entry) throws ConfigException {
90 ServerManagedObject<? extends S> mo = context.decode(getPath(definition), Converters.from(entry));
97 throw ConfigExceptionFactory.getInstance().createDecodingExceptionAdaptor(Converters.from(entry.getName()), e);
86 getConfiguration( AbstractManagedObjectDefinition<C, S> definition, Entry entry) argument
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/admin/server/
H A DAdminTestCaseUtils.java71 * Decodes a configuration entry into the required type of server
78 * @param entry
79 * An entry containing the configuration to be decoded.
82 * If the entry could not be decoded.
85 AbstractManagedObjectDefinition<?, S> definition, Entry entry)
87 ConfigEntry configEntry = new ConfigEntry(entry, null);
100 .createDecodingExceptionAdaptor(entry.getName(), e);
84 getConfiguration( AbstractManagedObjectDefinition<?, S> definition, Entry entry) argument
/forgerock/opendj-v3/opendj-config/src/test/java/org/forgerock/opendj/config/server/
H A DAdminTestCaseUtils.java61 * Decodes a configuration entry into the required type of server
69 * @param entry
70 * An entry containing the configuration to be decoded.
73 * If the entry could not be decoded.
76 AbstractManagedObjectDefinition<?, S> definition, Entry entry) throws ConfigException {
78 ServerManagedObject<? extends S> managedObject = context.decode(getPath(definition), entry);
85 throw ConfigExceptionFactory.getInstance().createDecodingExceptionAdaptor(entry.getName(), e);
75 getConfiguration(ServerManagementContext context, AbstractManagedObjectDefinition<?, S> definition, Entry entry) argument
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/tasks/
H A DLdifFileWriter.java130 public boolean writeEntry(TemplateEntry entry) argument
135 return ldifWriter.writeTemplateEntry(entry);
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DScripts.java40 private final ScriptEntry entry; field in class:Scripts.Script
43 entry = e;
47 org.forgerock.script.Script s = entry.getScript(ObjectSetContext.get());
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/
H A DBufferedIterator.java47 public void add(T entry) { argument
48 queue.add(entry);
51 public void add(List<T> entry) { argument
52 queue.addAll(entry);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DMapValueParser.java67 for (String entry : entries) {
68 Pair<String, String> pair = parse(entry);
81 * @param entry a single [name]=value pair
85 public Pair<String, String> parse(String entry) { argument
87 if (entry.length() > 0) {
88 Matcher m = pattern.matcher(entry);
107 * The incoming set of strings contains the [name]=value pairs. Search for the entry containing the name
116 for (String entry : entries) {
117 Pair<String, String> pair = parse(entry);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DSimpleIterator.java42 public void add(Object entry) { argument
43 ll.add(entry);
47 public void add(List entry) { argument
48 ll.addAll(entry);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/blacklist/
H A DBlacklist.java27 * Blacklists the given entry until its expiry time.
29 * @param entry The blacklist entry.
30 * @throws BlacklistException if the entry cannot be blacklisted for any reason.
32 void blacklist(T entry) throws BlacklistException; argument
35 * Determines whether the entry has previously been blacklisted. <strong>Note:</strong> entries are only
36 * blacklisted until they expire, so a {@code false} result does not mean the entry is valid. Further checks
37 * should be made to establish entry validity.
39 * @param entry The entry t
44 isBlacklisted(T entry) argument
[all...]

Completed in 55 milliseconds

1234567891011>>