All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carma.swagger.doclet.sample.resources.HttpServletRequestResource Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.carma.swagger.doclet.sample.resources;

import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.core.Context;

@Path("/HttpServletRequest")
public class HttpServletRequestResource {
    @GET
    public String injectServletRequest(@Context HttpServletRequest request) {
        return request.getQueryString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy