Package org.glassfish.jersey.server.filter

Examples of org.glassfish.jersey.server.filter.HttpMethodOverrideFilter


        // Enable monitoring MBeans
        property(ServerProperties.MONITORING_STATISTICS_MBEANS_ENABLED, true);

        // Support for HTTP method override via query parameter
        register(new HttpMethodOverrideFilter(HttpMethodOverrideFilter.Source.QUERY));

        // Propagate validation errors to client
        property(ServerProperties.BV_SEND_ERROR_IN_RESPONSE, true);

        // Enable support for role-based authorization
View Full Code Here

TOP

Related Classes of org.glassfish.jersey.server.filter.HttpMethodOverrideFilter

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.