Class SearchRequestInterceptor
java.lang.Object
org.elasticsearch.xpack.security.authz.interceptor.SearchRequestInterceptor
- All Implemented Interfaces:
RequestInterceptor
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.elasticsearch.Version -
Constructor Summary
ConstructorsConstructorDescriptionSearchRequestInterceptor(org.elasticsearch.threadpool.ThreadPool threadPool, org.elasticsearch.license.XPackLicenseState licenseState, org.elasticsearch.cluster.service.ClusterService clusterService) -
Method Summary
Modifier and TypeMethodDescriptionvoidintercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine.RequestInfo requestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine authorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine.AuthorizationInfo authorizationInfo, org.elasticsearch.action.ActionListener<Void> listener) This interceptor will introspect the request and potentially modify it.booleansupports(org.elasticsearch.action.IndicesRequest request)
-
Field Details
-
VERSION_SHARD_SEARCH_INTERCEPTOR
public static final org.elasticsearch.Version VERSION_SHARD_SEARCH_INTERCEPTOR
-
-
Constructor Details
-
SearchRequestInterceptor
public SearchRequestInterceptor(org.elasticsearch.threadpool.ThreadPool threadPool, org.elasticsearch.license.XPackLicenseState licenseState, org.elasticsearch.cluster.service.ClusterService clusterService)
-
-
Method Details
-
supports
public boolean supports(org.elasticsearch.action.IndicesRequest request) -
intercept
public void intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine.RequestInfo requestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine authorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine.AuthorizationInfo authorizationInfo, org.elasticsearch.action.ActionListener<Void> listener) Description copied from interface:RequestInterceptorThis interceptor will introspect the request and potentially modify it. If the interceptor does not apply to the request then the request will not be modified.- Specified by:
interceptin interfaceRequestInterceptor
-