Class ConfigurationBootstrap
- java.lang.Object
-
- org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap
-
- All Implemented Interfaces:
ResteasyConfiguration
- Direct Known Subclasses:
ListenerBootstrap
public abstract class ConfigurationBootstrap extends Object implements ResteasyConfiguration
Create a deployment from String-based configuration data- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description ConfigurationBootstrap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResteasyDeploymentcreateDeployment()StringgetParameter(String name)i.e.protected booleanparseBooleanParam(String key, String value)protected Map<String,String>parseMap(String map)protected voidprocessJndiComponentResources(String jndiResources)protected voidprocessJndiResources(String jndiResources)protected voidprocessResources(String list)protected voidprocessScannedJndiComponentResources(String jndiResources)protected voidprocessScannedResourceClassesWithBuilder(String scannedResourceClassesWithBuilder)protected voidprocessUnwrapped(String list)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jboss.resteasy.spi.ResteasyConfiguration
getInitParameter, getInitParameterNames, getParameterNames
-
-
-
-
Method Detail
-
createDeployment
public ResteasyDeployment createDeployment()
-
processJndiResources
protected void processJndiResources(String jndiResources)
-
processJndiComponentResources
protected void processJndiComponentResources(String jndiResources)
-
processScannedResourceClassesWithBuilder
protected void processScannedResourceClassesWithBuilder(String scannedResourceClassesWithBuilder)
-
processScannedJndiComponentResources
protected void processScannedJndiComponentResources(String jndiResources)
-
processResources
protected void processResources(String list)
-
processUnwrapped
protected void processUnwrapped(String list)
-
getParameter
public String getParameter(String name)
Description copied from interface:ResteasyConfigurationi.e. Servlet init-param first is searched, then servlet context.- Specified by:
getParameterin interfaceResteasyConfiguration- Parameters:
name- parameter name- Returns:
- parameter value
-
-