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

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

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

import com.carma.swagger.doclet.sample.api.ModelResourceModel;

import org.joda.time.DateTime;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/ModelResource/{modelid}")
@Produces(MediaType.APPLICATION_JSON)
public class ModelResource {
    @GET
    public ModelResourceModel getModel(@PathParam("modelid") long modelId) {
        return new ModelResourceModel(modelId, "Model Title", "Model Description", new DateTime());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy