Samples JDK
OrderInfo.java
1 package com.freemindcafe.apache.cxf.jaxrs.sample9;
2 
3 import javax.ws.rs.GET;
4 import javax.ws.rs.Path;
5 import javax.ws.rs.PathParam;
6 import javax.ws.rs.Produces;
7 
8 @Path("/Order/")
9 public interface OrderInfo {
10 
11 @GET
12 @Produces ("application/xml")
13 @Path("{orderId}")
14 public Order getOrder(@PathParam ("orderId") int officeId);
15 
16 @GET
17 @Produces ("application/xml")
18 @Path ("All")
19 public OrderList getAllOrders();
20 
21 }