1 26 27 package org.objectweb.jonas.ant.jonasbase; 28 29 import java.io.File ; 30 31 34 public interface BaseTaskItf { 35 36 40 void setConfigurationFile(String configurationFile); 41 42 45 void setDestDir(File destDir); 46 47 50 void setJonasRoot(File jonasRoot); 51 52 55 void execute(); 56 57 62 String getLogInfo(); 63 64 69 void setLogInfo(String logInfo); 70 } | Popular Tags |