Interface WebModuleMetaData
- All Superinterfaces:
- com.ibm.ws.runtime.metadata.MetaData,- com.ibm.ws.runtime.metadata.ModuleMetaData
public interface WebModuleMetaData
extends com.ibm.ws.runtime.metadata.ModuleMetaData
The metadata associated a WebModule runtime object.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the WebAppConfig associated with the webModule that this metaData object is attached to.Gets the Module level JSP specific metaData that is associated with the module to which this metaData object is attached to.Returns the securityMetaData object attached to the module associated with this metaData object NOTE: This method must only be invoked by security providers who had earlier pushed the securityMetaData objects into this metaData during metadata creation.Call to retrieve the cookieName in use for this web module.booleanReturns if the webmodule associated with this metaData object is atleast compliant with the Servlet 2.3 specificationvoidsetAnnotatedSecurityMetaData(Object metaData) voidvoidCall to push the JSP specific metaData into this metaData object at metaData creation time.voidsetSecurityMetaData(Object metaData) Call to push the securityMetaData into this metaData object at metaData creation time.voidsetSessionCookieNameInUse(String cookieName) Call to set the cookieName in use for this web module.Methods inherited from interface com.ibm.ws.runtime.metadata.MetaDatagetMetaData, getName, release, setMetaDataMethods inherited from interface com.ibm.ws.runtime.metadata.ModuleMetaDatagetApplicationMetaData, getComponentMetaDatas, getJ2EEName
- 
Method Details- 
isServlet23OrHigherboolean isServlet23OrHigher()Returns if the webmodule associated with this metaData object is atleast compliant with the Servlet 2.3 specification- Returns:
 
- 
getConfigurationWebAppConfig getConfiguration()Returns the WebAppConfig associated with the webModule that this metaData object is attached to.- Returns:
 
- 
getJspComponentMetadataBaseJspComponentMetaData getJspComponentMetadata()Gets the Module level JSP specific metaData that is associated with the module to which this metaData object is attached to. NOTE: This method must only be invoked by JSP Container implementations who had earlier pushed the securityMetaData objects into this metaData during metadata creation.- Returns:
 
- 
setJspComponentMetadataCall to push the JSP specific metaData into this metaData object at metaData creation time. This is typically done by JSP container implementations, only to retrieve it again at the time when the component is invoked at runtime.- Parameters:
- metaData-
 
- 
getSecurityMetaDataObject getSecurityMetaData()Returns the securityMetaData object attached to the module associated with this metaData object NOTE: This method must only be invoked by security providers who had earlier pushed the securityMetaData objects into this metaData during metadata creation.- Returns:
 
- 
getAnnotatedSecurityMetaDataObject getAnnotatedSecurityMetaData()
- 
setSecurityMetaDataCall to push the securityMetaData into this metaData object at metaData creation time. This is typically done by security providers, who push security constraint representations for the component associated with this metaData object, only to retrieve it again at the time when the component is invoked at runtime.- Parameters:
- metaData-
 
- 
setAnnotatedSecurityMetaData
- 
setSessionCookieNameInUseCall to set the cookieName in use for this web module. This can be retrieved by other components which need to use this name for routing.
- 
getSessionCookieNameInUseString getSessionCookieNameInUse()Call to retrieve the cookieName in use for this web module. This can be called by other components which need to use this name for routing.
- 
setCollaboratorComponentMetaData
- 
getCollaboratorComponentMetaDataWebCollaboratorComponentMetaData getCollaboratorComponentMetaData()
 
-