[Openbus-cvs-commits] Openbus/OpenbusJBI/src/java/org/openbus/jbi/install JBIInstaller.java,1.1,1.2
Status: Alpha
Brought to you by:
esancho
|
From: Esteban S. <es...@us...> - 2005-06-28 03:03:09
|
Update of /cvsroot/openbus/Openbus/OpenbusJBI/src/java/org/openbus/jbi/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12959/src/java/org/openbus/jbi/install Modified Files: JBIInstaller.java Removed Files: ComponentInstaller.java InstallationKeys.java SharedLibraryInstaller.java Log Message: Removing transactional logic from repository and registry. Refactoring to regular filesystems and HashMaps. --- ComponentInstaller.java DELETED --- --- SharedLibraryInstaller.java DELETED --- Index: JBIInstaller.java =================================================================== RCS file: /cvsroot/openbus/Openbus/OpenbusJBI/src/java/org/openbus/jbi/install/JBIInstaller.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JBIInstaller.java 9 Jun 2005 00:42:56 -0000 1.1 --- JBIInstaller.java 28 Jun 2005 03:02:29 -0000 1.2 *************** *** 16,19 **** --- 16,21 ---- package org.openbus.jbi.install; + import javax.management.ObjectName; + /** * *************** *** 21,24 **** * @author <a href="mailto:es...@op...">Esteban Sancho </a> */ ! public interface JBIInstaller ! extends ComponentInstaller, SharedLibraryInstaller {} \ No newline at end of file --- 23,40 ---- * @author <a href="mailto:es...@op...">Esteban Sancho </a> */ ! public interface JBIInstaller { ! public ObjectName loadInstaller(String componentName) ! throws InstallationException; ! ! public ObjectName loadNewInstaller(String installZipURL) ! throws InstallationException; ! ! public void unloadInstaller(String componentName, boolean isToBeDeleted) ! throws InstallationException; ! ! public String installSharedLibrary(String slZipURL) ! throws InstallationException; ! ! public void uninstallSharedLibrary(String slName) ! throws InstallationException; ! } \ No newline at end of file --- InstallationKeys.java DELETED --- |