| java.lang.Object org.enhydra.server.util.UnpackWar
UnpackWar | public class UnpackWar (Code) | | |
Constructor Summary | |
public | UnpackWar() If this constructor is used must call setWar() and
setDestDir() methods. | public | UnpackWar(String warPath, String destDirPath) |
Method Summary | |
public void | execute() Unpack war to destination directory. | public static void | main(String[] args) | public void | setDestDir(File d) Set the destination directory. | public void | setWar(File s) Set the path to War-file. |
UnpackWar | public UnpackWar()(Code) | | If this constructor is used must call setWar() and
setDestDir() methods.
|
UnpackWar | public UnpackWar(String warPath, String destDirPath)(Code) | | Default constructor
Parameters: warPath - path to war file Parameters: destDirPath - path to destination directory for unpack files |
setDestDir | public void setDestDir(File d)(Code) | | Set the destination directory. File will be unzipped into the
destination directory.
Parameters: d - Path to the directory. |
setWar | public void setWar(File s)(Code) | | Set the path to War-file.
Parameters: s - Path to war-file. |
|
|