Interface IResourceContainerFactory
-
public interface IResourceContainerFactoryInterface for factories used to instanciate simulated resources in a execution environment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfillLinkingResourceContainer(SimulatedLinkingResourceContainer container)Called by the framework to indicate that the given resource container should be set upvoidfillResourceContainerWithNestedResourceContainers(SimulatedResourceContainer container)Called by the framework to indicate that the given resource container should be set upvoidfillResourceContainerWithResources(SimulatedResourceContainer container)Called by the framework to indicate that the given resource container should be set upString[]getLinkingResourceContainerIDList()String[]getResourceContainerIDList()
-
-
-
Method Detail
-
getResourceContainerIDList
String[] getResourceContainerIDList()
- Returns:
- A list of IDs of resource container existing in the resource environment to create
-
fillResourceContainerWithResources
void fillResourceContainerWithResources(SimulatedResourceContainer container)
Called by the framework to indicate that the given resource container should be set up- Parameters:
container- The container to fill with active resources
-
fillResourceContainerWithNestedResourceContainers
void fillResourceContainerWithNestedResourceContainers(SimulatedResourceContainer container)
Called by the framework to indicate that the given resource container should be set up- Parameters:
container- The container to fill with active resources
-
getLinkingResourceContainerIDList
String[] getLinkingResourceContainerIDList()
- Returns:
- A list of IDs of linking resources existing in the resource environment to create
-
fillLinkingResourceContainer
void fillLinkingResourceContainer(SimulatedLinkingResourceContainer container)
Called by the framework to indicate that the given resource container should be set up- Parameters:
container- The container to fill with active resources
-
-