view src/main/java/de/intevation/lada/rest/JaxRsActivator.java @ 29:c5930d01e0ab

Package renaming and code cosmetics.
author Raimund Renkert <rrenkert@intevation.de>
date Wed, 22 May 2013 13:19:26 +0200
parents src/main/java/de/intevation/rest/JaxRsActivator.java@79e1144949d9
children 183f8116d9a6
line wrap: on
line source
package de.intevation.lada.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)