[Openbus-cvs-commits] Openbus/OpenbusJBI/src/java/org/openbus/jbi/framework Component.java,1.2,1.3
Status: Alpha
Brought to you by:
esancho
|
From: Esteban S. <es...@us...> - 2005-07-02 23:04:36
|
Update of /cvsroot/openbus/Openbus/OpenbusJBI/src/java/org/openbus/jbi/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2660/src/java/org/openbus/jbi/framework Modified Files: Component.java Log Message: Adding ClassLoaderFactory and implementation. Updating some configuration files. Index: Component.java =================================================================== RCS file: /cvsroot/openbus/Openbus/OpenbusJBI/src/java/org/openbus/jbi/framework/Component.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Component.java 28 Jun 2005 03:02:31 -0000 1.2 --- Component.java 2 Jul 2005 23:04:27 -0000 1.3 *************** *** 28,31 **** --- 28,32 ---- public class Component implements Serializable { private ComponentDesc descriptor; + private String installRoot; public Component(ComponentDesc descriptor_) { *************** *** 48,50 **** --- 49,59 ---- descriptor = descriptor_; } + + public String getInstallRoot() { + return installRoot; + } + + public void setInstallRoot(String installRoot_) { + installRoot = installRoot_; + } } \ No newline at end of file |