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

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

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

import com.yammer.dropwizard.auth.Auth;

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

@Path("/Auth")
public class AuthResource {
    /**
     * @status 404 not found
     */
    @GET
    public String authorize(@Auth String user) {
        return "USER = " + user;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy