001package org.tynamo.resteasy; 002 003public class ResteasySymbols 004{ 005 public static final String MAPPING_PREFIX = "resteasy.servlet.mapping.prefix"; 006 public static final String MAPPING_PREFIX_JSAPI = "resteasy.servlet.mapping.prefix.jsapi"; 007 008 /** 009 * If "true", then the InternalConstants.TAPESTRY_APP_PACKAGE_PARAM + ".rest" package will be added to the 010 * ResteasyPackageManager so that it will be scanned for annotated REST resource classes. 011 */ 012 public static final String AUTOSCAN_REST_PACKAGE = "tynamo.resteasy.autodiscovery"; 013 014 /** 015 * add the CORS authorization to the header 016 */ 017 public static final String CORS_ENABLED = "tynamo.resteasy.cors-enabled"; 018 019}