Package org.elasticsearch.plugins.security.filter

Examples of org.elasticsearch.plugins.security.filter.ActionPathFilter


    final Boolean enableActionPathFilter = settings.getAsBoolean(
        "security.module.actionpathfilter.enabled", true);

    if (enableActionPathFilter != null
        && enableActionPathFilter.booleanValue()) {
      restController.registerFilter(new ActionPathFilter(this));
    }

    // this.restController
    // .registerFilter(new FieldLevelPermissionFilter(this));
    // this.restController.registerFilter(new FieldResponseFilter(this));
View Full Code Here

TOP

Related Classes of org.elasticsearch.plugins.security.filter.ActionPathFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.