Example usage for org.springframework.web HttpRequestHandler interface-usage

List of usage examples for org.springframework.web HttpRequestHandler interface-usage

Introduction

In this page you can find the example usage for org.springframework.web HttpRequestHandler interface-usage.

Usage

From source file com.assemblade.rest.PathHandler.java

public class PathHandler implements HttpRequestHandler {
    @Override
    public void handleRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        String address = request.getRequestURI();

From source file net.lshift.diffa.adapter.content.ContentParticipantRequestHandler.java

/**
 * Base Spring HttpRequestHandler support for Diffa participants. Extends off the basic Servlet
 * implementation.
 */
public abstract class ContentParticipantRequestHandler extends ContentParticipantServlet
        implements HttpRequestHandler {

From source file net.lshift.diffa.adapter.scanning.ScanningParticipantRequestHandler.java

/**
 * Base Spring HttpRequestHandler support for Diffa participants. Extends off the basic Servlet
 * implementation.
 */
public abstract class ScanningParticipantRequestHandler extends ScanningParticipantServlet
        implements HttpRequestHandler {

From source file net.lshift.diffa.adapter.correlation.VersioningParticipantRequestHandler.java

/**
 * Base Spring HttpRequestHandler support for Diffa participants. Extends off the basic Servlet
 * implementation.
 */
public abstract class VersioningParticipantRequestHandler extends VersioningParticipantServlet
        implements HttpRequestHandler {

From source file com.griddynamics.banshun.web.NestedHandler.java

public class NestedHandler implements HttpRequestHandler {
    @Override
    public void handleRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.getWriter().write("Hello Spring MVC");
    }

From source file org.codehaus.groovy.grails.plugins.remoting.DummyHttpExporter.java

/**
 * A Spring remote exporter that can be used in place of any HTTP based
 * exporter. Its role is to replace existing exporters, thereby "switching" them
 * off. This is because you can not simply remove an exporter from the Spring
 * context at the moment.
 *

From source file com.googlecode.commonspringaspects.servlets.PerformanceHttpRequestHandler.java

/**
 * Shows web page with Jamon statistics.
 *
 * @version $Revision: $
 */
public class PerformanceHttpRequestHandler implements HttpRequestHandler {

From source file com.angstoverseer.web.servlet.MailServlet.java

@Component("MailServlet")
public class MailServlet implements HttpRequestHandler {

    @Autowired
    private MailService mailService;

From source file cf.spring.servicebroker.CatalogHandler.java

/**
 * Publishes the service catalog to "/v2/services". The catalog is built automatically using all the Spring beans
 * annotated with {@code @ServiceBroker}.
 *
 * @author Mike Heath <elcapo@gmail.com>
 */

From source file net.cristcost.study.services.ServiceHttpRequestHandler.java

/**
 * The Class ServiceServlet.
 */
public class ServiceHttpRequestHandler implements HttpRequestHandler {

    private AuthenticationManager authenticationManager = null;