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

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

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

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;

@Path("/Response")
public class ResponseResource {
    @GET
    public Response respond() {
        return Response.ok("Hello, World!").build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy