KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > Deployment > AssemblyConfigurator


1 /*
2  * Created on 28 janv. 2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package org.objectweb.openccm.Deployment;
8
9 import org.objectweb.ccm.descriptor.componentassembly.beans.ComponentassemblyBean;
10 import org.objectweb.ccm.descriptor.componentassembly.ccm.deployer.root.ComponentassemblyDeployerHandler;
11 import org.omg.Components.Deployment.Assembly;
12
13 /**
14  * @author briclet
15  *
16  * To change the template for this generated type comment go to
17  * Window>Preferences>Java>Code Generation>Code and Comments
18  */

19 public interface AssemblyConfigurator {
20
21     public ComponentassemblyDeployerHandler configure(ComponentassemblyDeployerHandler context);
22  
23     public Assembly getAssembly();
24     
25     public void removeAssembly();
26     
27     public ComponentassemblyBean getComponentassemblyTree();
28     
29     public void deleteTemporaryFile();
30     
31 }
32
Popular Tags