Package com.bhle.access.rest

Source Code of com.bhle.access.rest.Index

package com.bhle.access.rest;

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

import com.sun.jersey.api.view.Viewable;

@Path("/")
public class Index {
 
  @GET
  @Produces(MediaType.TEXT_HTML)
  public Viewable getIndex(){
    return new Viewable("/index");
  }
 
}
TOP

Related Classes of com.bhle.access.rest.Index

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.