1 package org.starobjects.restful.applib.resources;
2
3 import javax.ws.rs.GET;
4 import javax.ws.rs.Produces;
5
6 public interface HomePageResource {
7
8 @GET
9 @Produces( {"application/xhtml+xml", "text/html"} )
10 public String resources();
11
12 }