1 20 package org.apache.cactus.integration.ant.deployment; 21 22 import java.io.File ; 23 24 import org.apache.cactus.integration.ant.deployment.webapp.WarArchive; 25 26 32 public interface DeployableFile 33 { 34 37 File getFile(); 38 39 44 boolean isWar(); 45 46 52 boolean isEar(); 53 54 58 WarArchive getWarArchive(); 59 60 63 String getTestContext(); 64 65 69 void setTestContext(String theTestContext); 70 71 78 String getServletRedirectorMapping(); 79 80 87 String getFilterRedirectorMapping(); 88 89 96 String getJspRedirectorMapping(); 97 98 103 Object clone() throws CloneNotSupportedException ; 104 } 105 | Popular Tags |