00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 
00029 
00030  
00031 package org.objectweb.proactive.core.component.factory;
00032 
00033 import java.util.List;
00034 
00035 import org.objectweb.fractal.api.Component;
00036 import org.objectweb.fractal.api.Type;
00037 import org.objectweb.fractal.api.factory.GenericFactory;
00038 import org.objectweb.fractal.api.factory.InstantiationException;
00039 import org.objectweb.proactive.core.component.ContentDescription;
00040 import org.objectweb.proactive.core.component.ControllerDescription;
00041 import org.objectweb.proactive.core.descriptor.data.VirtualNode;
00042 import org.objectweb.proactive.core.node.Node;
00043 
00050 public interface ProActiveGenericFactory extends GenericFactory {
00067     Component newFcInstance(Type type, ControllerDescription controllerDesc,
00068             ContentDescription contentDesc) throws InstantiationException;
00069 
00088     Component newFcInstance(Type type, ControllerDescription controllerDesc,
00089             ContentDescription contentDesc, Node node)
00090             throws InstantiationException;
00091 
00114     Component newFcInstance(Type type, ControllerDescription controllerDesc,
00115             ContentDescription contentDesc, VirtualNode virtualNode)
00116             throws InstantiationException;
00117     
00118     
00119 
00143     List<Component> newFcInstanceAsList(Type type, ControllerDescription controllerDesc,
00144             ContentDescription[] contentDesc, VirtualNode virtualNode)
00145             throws InstantiationException;
00146 
00171     List<Component> newFcInstanceAsList(Type type, ControllerDescription controllerDesc,
00172             ContentDescription contentDesc, Node[] nodes)
00173             throws InstantiationException;
00174     
00198     List<Component> newFcInstanceAsList(Type type, ControllerDescription controllerDesc,
00199             ContentDescription contentDesc, VirtualNode virtualNode)
00200             throws InstantiationException;
00201 
00223     List<Component> newFcInstanceAsList(Type type, ControllerDescription controllerDesc,
00224             ContentDescription[] contentDesc, Node[] nodes)
00225             throws InstantiationException;
00226 
00227 }