1 20 package org.apache.cactus.integration.ant.container.resin; 21 22 import java.io.File ; 23 24 import org.apache.tools.ant.taskdefs.Java; 25 import org.apache.tools.ant.types.FilterChain; 26 import org.apache.tools.ant.types.Path; 27 28 33 public class Resin2xContainer extends AbstractResinContainer 34 { 35 37 40 public final String getName() 41 { 42 return "Resin 2.x"; 43 } 44 45 47 50 protected final String getContainerDirName() 51 { 52 return "resin2x"; 53 } 54 55 58 protected void startUpAdditions(Java theJavaContainer, Path theClasspath) 59 { 60 } 62 63 66 protected void prepareAdditions(File theInstallDir, 67 FilterChain theFilterChain) 68 { 69 } 71 } 72 | Popular Tags |