| |
|
| java.lang.Object org.jboss.web.WebApplication
WebApplication | public class WebApplication (Code) | | A WebApplication represents the information for a war deployment.
See Also: AbstractWebContainer author: Scott.Stark@jboss.org version: $Revision: 57209 $ |
data | Object data(Code) | | Arbitary data object for storing application specific data
|
metaData | WebMetaData metaData(Code) | | The web app metadata from the web.xml and jboss-web.xml descriptors
|
url | URL url(Code) | | URL where this application was deployed from
|
warInfo | DeploymentInfo warInfo(Code) | | The DeploymentInfo for the war
|
WebApplication | public WebApplication()(Code) | | Create an empty WebApplication instance
|
WebApplication | public WebApplication(WebMetaData metaData)(Code) | | Create a WebApplication instance with with given web-app metadata.
Parameters: metaData - the web-app metadata containing the web.xml andjboss-web.xml descriptor metadata. |
WebApplication | public WebApplication(String name, URL url, ClassLoader classLoader)(Code) | | Create a WebApplication instance with with given name,
url and class loader.
Parameters: name - name of this application Parameters: url - url where this application was deployed from Parameters: classLoader - Class loader of this application |
getClassLoader | public ClassLoader getClassLoader()(Code) | | Get the class loader of this WebApplication.
The ClassLoader instance of the web application |
getDeploymentInfo | public DeploymentInfo getDeploymentInfo()(Code) | | |
getMetaData | public WebMetaData getMetaData()(Code) | | Getter for property metaData.
Value of property metaData. |
getName | public String getName()(Code) | | Get the name of this WebApplication.
String name of the web application |
getURL | public URL getURL()(Code) | | Get the URL from which this WebApplication was deployed
URL where this application was deployed from |
setClassLoader | public void setClassLoader(ClassLoader classLoader)(Code) | | Set the class loader of this WebApplication.
Parameters: classLoader - The ClassLoader instance for the web application |
setDeploymentInfo | public void setDeploymentInfo(DeploymentInfo warInfo)(Code) | | |
setMetaData | public void setMetaData(WebMetaData metaData)(Code) | | Setter for property metaData.
Parameters: metaData - New value of property metaData. |
setName | public void setName(String name)(Code) | | Set the name of this WebApplication.
Parameters: name - of the web application |
setURL | public void setURL(URL url)(Code) | | Set the URL from which this WebApplication was deployed
Parameters: url - URL where this application was deployed from |
|
|
|