1 23 package com.sun.enterprise.jbi.serviceengine.install; 24 25 import com.sun.enterprise.jbi.serviceengine.*; 26 import com.sun.enterprise.jbi.serviceengine.ServiceEngineException; 27 28 29 30 34 public interface Installer { 35 36 public boolean isJBIInstalled(); 37 38 public void setComponentName(String componentName); 39 40 45 public String install(String zipFilePath) throws ServiceEngineException; 46 47 50 public void start() throws ServiceEngineException; 51 52 53 57 public boolean isComponentInstalled(); 58 59 62 public void stop() throws ServiceEngineException; 63 64 67 public void uninstall() throws ServiceEngineException; 68 69 70 } 71 | Popular Tags |