Changeset 155 for xssim/trunk/src/test
- Timestamp:
- 03/16/12 09:58:38 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
xssim/trunk/src/test/rewolucja/scheduling/ManagementSystemFactory.java
r104 r155 5 5 import test.rewolucja.resources.ResourceType; 6 6 import test.rewolucja.resources.description.ExecResourceDescription; 7 import test.rewolucja.scheduling.implementation.GridBroker New;7 import test.rewolucja.scheduling.implementation.GridBroker; 8 8 import test.rewolucja.scheduling.implementation.LocalManagementSystem; 9 9 import test.rewolucja.scheduling.implementation.ManagementSystem; … … 14 14 15 15 switch(type){ 16 case COMPUTING_GRID: return new GridBroker New(erd.getResourceId(), schedulingPluginName, execTimeEstimationPlugin, erd);16 case COMPUTING_GRID: return new GridBroker(erd.getResourceId(), schedulingPluginName, execTimeEstimationPlugin, erd); 17 17 case COMPUTING_NODE: return new LocalManagementSystem(erd.getResourceId(), GssimConstants.MANAGEMENT_SYSTEM, schedulingPluginName, execTimeEstimationPlugin, erd); 18 18 default: return null;
Note: See TracChangeset
for help on using the changeset viewer.