1 package de.webman.wminstaller.install; 2 3 import java.util.*; 4 5 24 public interface ModuleInstaller 25 { 26 public static final int INCLUDE = 0; 27 public static final int IGNORE = 1; 28 public static final int CONFIGURE = 2; 29 30 31 32 35 String getName(); 36 37 46 int pre(HashMap dictionary) throws InstallationException; 47 48 49 53 void install(HashMap dictionary) throws InstallationException; 54 55 59 void post(HashMap dictionary) throws InstallationException; 60 61 65 void configure(HashMap dictionary) throws InstallationException; 66 67 68 69 } 70 | Popular Tags |