Interface WebModuleConfig
-
- All Superinterfaces:
ApplicationConfig,ConfigBeanProxy
public interface WebModuleConfig extends ConfigBeanProxy, ApplicationConfig
Corresponds 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)-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
-
-
-
-
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
-
getEnvEntry
@DuckTyped EnvEntry getEnvEntry(String name)
-
getContextParam
@DuckTyped ContextParam getContextParam(String name)
-
deleteEnvEntry
@DuckTyped void deleteEnvEntry(String name) throws PropertyVetoException, TransactionFailure
-
deleteContextParam
@DuckTyped void deleteContextParam(String name) throws PropertyVetoException, TransactionFailure
-
envEntriesMatching
@DuckTyped List<EnvEntry> envEntriesMatching(String nameOrNull)
-
contextParamsMatching
@DuckTyped List<ContextParam> contextParamsMatching(String nameOrNull)
-
-