Interface WebModuleConfig
-
- All Superinterfaces:
com.sun.enterprise.config.serverbeans.ApplicationConfig,org.jvnet.hk2.config.ConfigBeanProxy
public interface WebModuleConfig extends org.jvnet.hk2.config.ConfigBeanProxy, com.sun.enterprise.config.serverbeans.ApplicationConfigCorresponds to the web-module-config element used for recording web module configuration customizations.- Author:
- tjquinn
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classWebModuleConfig.Duck
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ContextParam>contextParamsMatching(String nameOrNull)voiddeleteContextParam(String name)voiddeleteEnvEntry(String name)List<EnvEntry>envEntriesMatching(String nameOrNull)List<ContextParam>getContextParam()Returns the context-param objects, if any.ContextParamgetContextParam(String name)List<EnvEntry>getEnvEntry()Returns the env-entry objects, if any.EnvEntrygetEnvEntry(String name)
-
-
-
Method Detail
-
getEnvEntry
List<EnvEntry> getEnvEntry()
Returns the env-entry objects, if any.- Returns:
- the env-entry objects
-
getContextParam
List<ContextParam> getContextParam()
Returns the context-param objects, if any.- Returns:
- the context-param objects
-
getContextParam
@DuckTyped ContextParam getContextParam(String name)
-
deleteEnvEntry
@DuckTyped void deleteEnvEntry(String name) throws PropertyVetoException, org.jvnet.hk2.config.TransactionFailure
- Throws:
PropertyVetoExceptionorg.jvnet.hk2.config.TransactionFailure
-
deleteContextParam
@DuckTyped void deleteContextParam(String name) throws PropertyVetoException, org.jvnet.hk2.config.TransactionFailure
- Throws:
PropertyVetoExceptionorg.jvnet.hk2.config.TransactionFailure
-
contextParamsMatching
@DuckTyped List<ContextParam> contextParamsMatching(String nameOrNull)
-
-