view src/main/java/de/intevation/rest/JaxRsActivator.java @ 21:f4bc98fb8aac

Added new links to trigger creation and deletion
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 26 Apr 2013 15:00:08 +0200
parents 79e1144949d9
children
line wrap: on
line source
package de.intevation.rest;

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;

/**
 * A class extending {@link Application} and annotated with @ApplicationPath is the Java EE 6
 * "no XML" approach to activating JAX-RS.
 * 
 * <p>
 * Resources are served relative to the servlet path specified in the {@link ApplicationPath}
 * annotation.
 * </p>
 */
@ApplicationPath("/rest")
public class JaxRsActivator extends Application {
   /* class body intentionally left blank */
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)