View Javadoc

1   package eu.scape_project.watch.rest.resource;
2   
3   import javax.ws.rs.Path;
4   import javax.ws.rs.Produces;
5   
6   import com.sun.jersey.spi.resource.Singleton;
7   import com.wordnik.swagger.core.Api;
8   
9   /**
10   * {@link AsyncRequestResource} with XML output.
11   * 
12   * @author Luis Faria <lfaria@keep.pt>
13   * 
14   */
15  @Path("/asyncrequest.xml")
16  @Api(value = "/asyncrequest", description = "Operations about async requests")
17  @Singleton
18  @Produces({"application/xml"})
19  public class AsyncRequestResourceXML extends AsyncRequestResource {
20  
21  }