1 package ejava.examples.ejbwar.inventory.rs;
2
3 import javax.ws.rs.ApplicationPath;
4
5 /**
6 * This class triggers JAX-RS behavior in the server and registers
7 * all JAX-RS classes below the @ApplicationPath listed here
8 */
9 @ApplicationPath("api")
10 public class Application extends javax.ws.rs.core.Application {
11 }