Interface IResourceContainerFactory
-
public interface IResourceContainerFactory
Interface for factories used to instanciate simulated resources in a execution environment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
fillLinkingResourceContainer(SimulatedLinkingResourceContainer container)
Called by the framework to indicate that the given resource container should be set upvoid
fillResourceContainerWithNestedResourceContainers(SimulatedResourceContainer container)
Called by the framework to indicate that the given resource container should be set upvoid
fillResourceContainerWithResources(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
-
-