| |
|
| org.apache.cactus.integration.ant.deployment.DeployableFile
All known Subclasses: org.apache.cactus.integration.ant.deployment.AbstractDeployableFile,
DeployableFile | public interface DeployableFile (Code) | | Represents a component to deploy in a container. It can either be
a WAR or an EAR file.
version: $Id: DeployableFile.java 239003 2004-05-31 20:05:27Z vmassol $ |
getFile | File getFile()(Code) | | the file to deploy in a container (either WAR or EAR) |
getFilterRedirectorMapping | String getFilterRedirectorMapping()(Code) | | Returns the first URL-pattern to which the Cactus filter redirector is
mapped in the deployment descriptor.
The mapping, or null if the filter redirector isnot defined or mapped in the descriptor |
getJspRedirectorMapping | String getJspRedirectorMapping()(Code) | | Returns the first URL-pattern to which the Cactus JSP redirector is
mapped in the deployment descriptor.
The mapping, or null if the JSP redirector isnot defined or mapped in the descriptor |
getServletRedirectorMapping | String getServletRedirectorMapping()(Code) | | Returns the first URL-pattern to which the Cactus servlet redirector is
mapped in the deployment descriptor.
The mapping, or null if the servlet redirector isnot defined or mapped in the descriptor |
getTestContext | String getTestContext()(Code) | | the webapp context which holds the Cactus tests |
getWarArchive | WarArchive getWarArchive()(Code) | | the WAR deployment descriptor object for the WAR containingthe Cactus Servlet redirector |
isEar | boolean isEar()(Code) | | Returns whether the deployable file is an enterprise application archive
(EAR).
true if the deployable file is a EAR |
isWar | boolean isWar()(Code) | | Returns whether the deployable file is a web-app archive (WAR).
true if the deployable file is a WAR |
setTestContext | void setTestContext(String theTestContext)(Code) | | Parameters: theTestContext - the test context that will be used to test if thecontainer is started or not |
|
|
|