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

com.frightanic.smn.resource.RootResource Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.frightanic.smn.resource;

import com.frightanic.smn.view.IndexView;
import com.codahale.metrics.annotation.Timed;
import com.wordnik.swagger.annotations.Api;

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

@Path("/")
@Api(value = "/", description = "root resource which uses DropWizard Views.")
@Produces(MediaType.TEXT_HTML)
public class RootResource {

  @GET
  @Timed
  public IndexView index() {
    return new IndexView();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy