Searched refs:filter (Results 276 - 300 of 1890) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java52 * criteria to further filter the results.
71 // The search filter to use when filtering the set of group members.
72 private final SearchFilter filter; field in class:DynamicGroupMemberList
110 * @param filter The filter that should be enforced for all entries to
118 SearchFilter filter)
124 this.filter = filter;
233 // create the filter to use with that base DN. There are some special-case
234 // optimizations that we can do here, but in general the filter wil
116 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
H A DIsMemberOfVirtualAttributeProvider.java231 * if one of the following is true about the search filter:
233 * <LI>It is an equality filter targeting the associated attribute
235 * <LI>It is an AND filter in which at least one of the components is an
236 * equality filter targeting the associated attribute type.</LI>
254 * Indicates whether the provided search filter is one that may be used with
259 * @param filter The search filter for which to make the
263 * @return {@code true} if the provided filter may be used with this virtual
266 private boolean isSearchable(AttributeType attributeType, SearchFilter filter, argument
269 switch (filter
395 extractGroup(AttributeType attributeType, SearchFilter filter) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java53 * criteria to further filter the results.
72 // The search filter to use when filtering the set of group members.
73 private final SearchFilter filter; field in class:DynamicGroupMemberList
111 * @param filter The filter that should be enforced for all entries to
119 SearchFilter filter)
125 this.filter = filter;
234 // create the filter to use with that base DN. There are some special-case
235 // optimizations that we can do here, but in general the filter wil
117 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java53 * criteria to further filter the results.
72 // The search filter to use when filtering the set of group members.
73 private final SearchFilter filter; field in class:DynamicGroupMemberList
111 * @param filter The filter that should be enforced for all entries to
119 SearchFilter filter)
125 this.filter = filter;
234 // create the filter to use with that base DN. There are some special-case
235 // optimizations that we can do here, but in general the filter wil
117 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java52 * criteria to further filter the results.
71 // The search filter to use when filtering the set of group members.
72 private final SearchFilter filter; field in class:DynamicGroupMemberList
110 * @param filter The filter that should be enforced for all entries to
118 SearchFilter filter)
124 this.filter = filter;
233 // create the filter to use with that base DN. There are some special-case
234 // optimizations that we can do here, but in general the filter wil
116 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
H A DIsMemberOfVirtualAttributeProvider.java231 * if one of the following is true about the search filter:
233 * <LI>It is an equality filter targeting the associated attribute
235 * <LI>It is an AND filter in which at least one of the components is an
236 * equality filter targeting the associated attribute type.</LI>
254 * Indicates whether the provided search filter is one that may be used with
259 * @param filter The search filter for which to make the
263 * @return {@code true} if the provided filter may be used with this virtual
266 private boolean isSearchable(AttributeType attributeType, SearchFilter filter, argument
269 switch (filter
395 extractGroup(AttributeType attributeType, SearchFilter filter) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DDynamicGroupMemberList.java51 * criteria to further filter the results.
72 /** The search filter to use when filtering the set of group members. */
73 private final SearchFilter filter; field in class:DynamicGroupMemberList
111 * @param filter The filter that should be enforced for all entries to
119 SearchFilter filter)
125 this.filter = filter;
228 // create the filter to use with that base DN. There are some special-case
229 // optimizations that we can do here, but in general the filter wil
117 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
H A DIsMemberOfVirtualAttributeProvider.java185 * if one of the following is true about the search filter:
187 * <LI>It is an equality filter targeting the associated attribute
189 * <LI>It is an AND filter in which at least one of the components is an
190 * equality filter targeting the associated attribute type.</LI>
208 * Indicates whether the provided search filter is one that may be used with
213 * @param filter The search filter for which to make the
217 * @return {@code true} if the provided filter may be used with this virtual
220 private boolean isSearchable(AttributeType attributeType, SearchFilter filter, argument
223 switch (filter
343 extractGroup(AttributeType attributeType, SearchFilter filter) argument
[all...]
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DCoreTokenAdapterTest.java24 import org.forgerock.openam.cts.api.filter.TokenFilter;
25 import org.forgerock.openam.cts.api.filter.TokenFilterBuilder;
106 TokenFilter filter = new TokenFilterBuilder().and().build();
109 adapter.query(filter);
112 verify(mockTaskDispatcher).query(eq(filter), eq(mockResultHandler));
124 TokenFilter filter = new TokenFilterBuilder().returnAttribute(CoreTokenField.BLOB).build();
127 adapter.attributeQuery(filter);
130 verify(mockTaskDispatcher).partialQuery(eq(filter), eq(mockResultHandler));
160 TokenFilter filter = new TokenFilterBuilder().build();
163 adapter.deleteOnQuery(filter);
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsRouteTree.java19 import static org.forgerock.authz.filter.crest.AuthorizationFilters.createAuthorizationFilter;
28 import org.forgerock.authz.filter.crest.api.CrestAuthorizationModule;
117 static SmsRouteTreeBuilder filter(String uriTemplate, Function<String, Boolean> handlesFunction, Filter filter) { argument
118 return new SmsRouteTreeLeafBuilder(uriTemplate, handlesFunction, filter);
127 private final Filter filter; field in class:SmsRouteTree
135 * @param filter The filter to wrap around all routes.
139 CrestAuthorizationModule defaultAuthzModule, boolean isRoot, Router router, Filter filter,
147 this.filter
138 SmsRouteTree(Map<MatchingResourcePath, CrestAuthorizationModule> authzModules, CrestAuthorizationModule defaultAuthzModule, boolean isRoot, Router router, Filter filter, ResourcePath path) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/schema/
H A DFakeEntryIndex.java112 SearchFilter filter = SearchFilter.createFilterFromString(filterString);
113 if (!attrType.equals(filter.getAttributeType()))
115 throw new IllegalArgumentException("The search filter \"" + filterString
118 Assertion assertion = getAssertion(filter);
122 private Assertion getAssertion(SearchFilter filter) throws DecodeException argument
124 switch (filter.getFilterType())
127 return matchingRule.getAssertion(filter.getAssertionValue());
130 return matchingRule.getLessOrEqualAssertion(filter.getAssertionValue());
133 return matchingRule.getGreaterOrEqualAssertion(filter.getAssertionValue());
136 MatchingRule rule = DirectoryServer.getMatchingRule(filter
[all...]
/forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/notifications/
H A DNotificationsWebSocketFilterTest.java54 private NotificationsWebSocketFilter filter; field in class:NotificationsWebSocketFilterTest
77 filter = new NotificationsWebSocketFilter();
78 filter.init(null);
83 filter.doFilter(request, response, filterChain);
92 filter.doFilter(request, response, filterChain);
102 filter.doFilter(request, response, filterChain);
111 filter.doFilter(request, response, filterChain);
120 filter.doFilter(request, response, filterChain);
129 filter.doFilter(request, response, filterChain);
140 filter
[all...]
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DCoreTokenAdapterTest.java25 import org.forgerock.openam.cts.api.filter.TokenFilter;
26 import org.forgerock.openam.cts.api.filter.TokenFilterBuilder;
111 TokenFilter filter = new TokenFilterBuilder().and().build();
114 adapter.query(filter);
117 verify(mockTaskDispatcher).query(eq(filter), eq(mockResultHandler));
129 TokenFilter filter = new TokenFilterBuilder().returnAttribute(CoreTokenField.BLOB).build();
132 adapter.attributeQuery(filter);
135 verify(mockTaskDispatcher).partialQuery(eq(filter), eq(mockResultHandler));
165 TokenFilter filter = new TokenFilterBuilder().build();
168 adapter.deleteOnQuery(filter);
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDAPEntrySelectionPanel.java64 * this panel is contained. For instance if the filter is set to Filter.USERS
87 * Default filter (all entries).
223 * Returns the last filter set with the setFilter method.
224 * @return the last filter set with the setFilter method.
232 * Sets the filter to be used when the panel is displayed.
233 * @param filter the filter.
235 public void setFilter(Filter filter) argument
237 f = filter;
242 super.filter
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDAPEntrySelectionPanel.java64 * this panel is contained. For instance if the filter is set to Filter.USERS
87 * Default filter (all entries).
223 * Returns the last filter set with the setFilter method.
224 * @return the last filter set with the setFilter method.
232 * Sets the filter to be used when the panel is displayed.
233 * @param filter the filter.
235 public void setFilter(Filter filter) argument
237 f = filter;
242 super.filter
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDAPEntrySelectionPanel.java64 * this panel is contained. For instance if the filter is set to Filter.USERS
87 * Default filter (all entries).
223 * Returns the last filter set with the setFilter method.
224 * @return the last filter set with the setFilter method.
232 * Sets the filter to be used when the panel is displayed.
233 * @param filter the filter.
235 public void setFilter(Filter filter) argument
237 f = filter;
242 super.filter
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDAPEntrySelectionPanel.java64 * this panel is contained. For instance if the filter is set to Filter.USERS
87 * Default filter (all entries).
223 * Returns the last filter set with the setFilter method.
224 * @return the last filter set with the setFilter method.
232 * Sets the filter to be used when the panel is displayed.
233 * @param filter the filter.
235 public void setFilter(Filter filter) argument
237 f = filter;
242 super.filter
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDAPEntrySelectionPanel.java64 * this panel is contained. For instance if the filter is set to Filter.USERS
87 * Default filter (all entries).
223 * Returns the last filter set with the setFilter method.
224 * @return the last filter set with the setFilter method.
232 * Sets the filter to be used when the panel is displayed.
233 * @param filter the filter.
235 public void setFilter(Filter filter) argument
237 f = filter;
242 super.filter
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DFilteredRole.java49 * Name of the filter attribute, which controls membership.
89 * @param filter
90 * the filter that controls membership
94 public FilteredRole(String name, String filter) throws UMSException { argument
133 * Sets the filter that controls the membership.
135 * @param filter
136 * the filter that controls the membership
138 * if there is any error while setting the filter
142 public void setFilter(String filter) throws UMSException { argument
143 setAttribute(new Attr(FILTER_ATTR_NAME, filter));
204 getMembers(String[] attributes, String filter) argument
249 getMemberIDs(String filter) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DLDAPEntrySelectionPanel.java61 * this panel is contained. For instance if the filter is set to Filter.USERS
74 /** Default filter (all entries). */
199 * Returns the last filter set with the setFilter method.
200 * @return the last filter set with the setFilter method.
208 * Sets the filter to be used when the panel is displayed.
209 * @param filter the filter.
211 public void setFilter(Filter filter) argument
213 f = filter;
218 super.filter
[all...]
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/queue/
H A DTaskDispatcherTest.java22 import org.forgerock.openam.cts.api.filter.TokenFilter;
149 TokenFilter filter = mock(TokenFilter.class);
151 given(mockTaskFactory.query(filter, mockHandler)).willReturn(task);
154 queue.query(filter, mockHandler);
163 TokenFilter filter = mock(TokenFilter.class);
165 given(mockTaskFactory.partialQuery(filter, mockHandler)).willReturn(task);
168 queue.partialQuery(filter, mockHandler);
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilterTest.java53 private CollectClientConnectionsFilter filter; field in class:CollectClientConnectionsFilterTest
59 filter = new CollectClientConnectionsFilter(mock(ServerContext.class), null, authConfig);
71 assertThat(filter.parseUsernamePassword(authZHeader)).isNull();
83 assertThat(filter.parseUsernamePassword(authZHeader)).containsExactly(USERNAME, PASSWORD);
108 return filter.resourceExceptionToPromise(ResourceException.getException(401, "Invalid Credentials")).get();
128 assertThat(filter.extractUsernamePassword(request)).containsExactly(USERNAME, PASSWORD);
145 assertThat(filter.extractUsernamePassword(request)).containsExactly(USERNAME, PASSWORD);
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DFilteredRole.java49 * Name of the filter attribute, which controls membership.
89 * @param filter
90 * the filter that controls membership
94 public FilteredRole(String name, String filter) throws UMSException { argument
133 * Sets the filter that controls the membership.
135 * @param filter
136 * the filter that controls the membership
138 * if there is any error while setting the filter
142 public void setFilter(String filter) throws UMSException { argument
143 setAttribute(new Attr(FILTER_ATTR_NAME, filter));
204 getMembers(String[] attributes, String filter) argument
249 getMemberIDs(String filter) argument
[all...]
/forgerock/openam-v13/openam-uma/src/test/java/org/forgerock/openam/uma/rest/
H A DUmaEnabledFilterTest.java118 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
122 Promise<ActionResponse, ResourceException> promise = filter.filterAction(context, request, requestHandler);
144 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
148 Promise<ResourceResponse, ResourceException> promise = filter.filterCreate(context, request, requestHandler);
162 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
166 Promise<ResourceResponse, ResourceException> promise = filter.filterDelete(context, request, requestHandler);
180 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
184 Promise<ResourceResponse, ResourceException> promise = filter.filterPatch(context, request, requestHandler);
198 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
203 Promise<QueryResponse, ResourceException> promise = filter
[all...]
/forgerock/openam/openam-uma/src/test/java/org/forgerock/openam/uma/rest/
H A DUmaEnabledFilterTest.java128 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
132 Promise<ActionResponse, ResourceException> promise = filter.filterAction(context, request, requestHandler);
154 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
158 Promise<ResourceResponse, ResourceException> promise = filter.filterCreate(context, request, requestHandler);
172 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
176 Promise<ResourceResponse, ResourceException> promise = filter.filterDelete(context, request, requestHandler);
190 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
194 Promise<ResourceResponse, ResourceException> promise = filter.filterPatch(context, request, requestHandler);
208 UmaEnabledFilter filter = new UmaEnabledFilter(factory);
213 Promise<QueryResponse, ResourceException> promise = filter
[all...]

Completed in 144 milliseconds

<<11121314151617181920>>