Revert "CLOUDSTACK-6286: added FinishAggregationCommand and StartAggregationCommand to simulator"

This reverts commit 1586f419dc. Reverting as the commit that includes the two classes is missing.
This commit is contained in:
Abhinandan Prateek 2014-04-03 10:18:50 +05:30
parent a82a1299ec
commit 228aa07153
1 changed files with 1 additions and 2 deletions

View File

@ -369,8 +369,7 @@ public class SimulatorManagerImpl extends ManagerBase implements SimulatorManage
return _mockNetworkMgr.setupPVLAN((PvlanSetupCommand)cmd);
} else if (cmd instanceof StorageSubSystemCommand) {
return this.storageHandler.handleStorageCommands((StorageSubSystemCommand)cmd);
} else if (cmd instanceof VpnUsersCfgCommand || cmd instanceof RemoteAccessVpnCfgCommand || cmd instanceof SetMonitorServiceCommand ||
cmd instanceof FinishAggregationCommand || cmd instanceof StartAggregationCommand) {
} else if (cmd instanceof VpnUsersCfgCommand || cmd instanceof RemoteAccessVpnCfgCommand || cmd instanceof SetMonitorServiceCommand) {
return new Answer(cmd);
} else {
s_logger.error("Simulator does not implement command of type " + cmd.toString());