| /** |
| * Copyright (C) 2011 Cloud.com, Inc. All rights reserved. |
| */ |
| |
| package com.cloud.agent.manager; |
| |
| import java.util.HashMap; |
| import java.util.Map; |
| |
| import com.cloud.agent.api.Answer; |
| import com.cloud.agent.api.CheckVirtualMachineCommand; |
| import com.cloud.agent.api.CleanupNetworkRulesCmd; |
| import com.cloud.agent.api.GetDomRVersionAnswer; |
| import com.cloud.agent.api.GetDomRVersionCmd; |
| import com.cloud.agent.api.GetVmStatsCommand; |
| import com.cloud.agent.api.GetVncPortCommand; |
| import com.cloud.agent.api.MigrateAnswer; |
| import com.cloud.agent.api.MigrateCommand; |
| import com.cloud.agent.api.NetworkUsageCommand; |
| import com.cloud.agent.api.RebootCommand; |
| import com.cloud.agent.api.SecurityGroupRuleAnswer; |
| import com.cloud.agent.api.SecurityGroupRulesCmd; |
| import com.cloud.agent.api.StartCommand; |
| import com.cloud.agent.api.StopCommand; |
| import com.cloud.agent.api.check.CheckSshAnswer; |
| import com.cloud.agent.api.check.CheckSshCommand; |
| import com.cloud.agent.api.proxy.CheckConsoleProxyLoadCommand; |
| import com.cloud.agent.api.proxy.WatchConsoleProxyLoadCommand; |
| import com.cloud.agent.api.routing.DhcpEntryCommand; |
| import com.cloud.agent.api.routing.IpAssocCommand; |
| import com.cloud.agent.api.routing.LoadBalancerConfigCommand; |
| import com.cloud.agent.api.routing.SavePasswordCommand; |
| import com.cloud.agent.api.routing.SetPortForwardingRulesCommand; |
| import com.cloud.agent.api.routing.SetStaticNatRulesCommand; |
| import com.cloud.agent.api.routing.VmDataCommand; |
| import com.cloud.utils.Pair; |
| import com.cloud.utils.component.Manager; |
| import com.cloud.vm.VirtualMachine.State; |
| |
| public interface MockVmManager extends Manager { |
| public Answer stopVM(StopCommand cmd); |
| public Answer rebootVM(RebootCommand cmd); |
| |
| public Answer checkVmState(CheckVirtualMachineCommand cmd, String hostGuid); |
| public Map<String, State> getVmStates(String hostGuid); |
| public Answer getVncPort(GetVncPortCommand cmd); |
| |
| Answer startVM(StartCommand cmd, SimulatorInfo info); |
| |
| Answer getVmStats(GetVmStatsCommand cmd); |
| public CheckSshAnswer checkSshCommand(CheckSshCommand cmd); |
| |
| Answer SetStaticNatRules(SetStaticNatRulesCommand cmd); |
| |
| Answer SetPortForwardingRules(SetPortForwardingRulesCommand cmd); |
| |
| Answer getNetworkUsage(NetworkUsageCommand cmd); |
| |
| Answer IpAssoc(IpAssocCommand cmd); |
| |
| Answer LoadBalancerConfig(LoadBalancerConfigCommand cmd); |
| |
| Answer AddDhcpEntry(DhcpEntryCommand cmd); |
| |
| Answer setVmData(VmDataCommand cmd); |
| Answer CleanupNetworkRules(CleanupNetworkRulesCmd cmd, SimulatorInfo info); |
| |
| Answer CheckConsoleProxyLoad(CheckConsoleProxyLoadCommand cmd); |
| Answer WatchConsoleProxyLoad(WatchConsoleProxyLoadCommand cmd); |
| |
| Answer SavePassword(SavePasswordCommand cmd); |
| HashMap<String, Pair<Long, Long>> syncNetworkGroups(SimulatorInfo info); |
| SecurityGroupRuleAnswer AddSecurityGroupRules(SecurityGroupRulesCmd cmd, SimulatorInfo info); |
| MigrateAnswer Migrate(MigrateCommand cmd, SimulatorInfo info); |
| GetDomRVersionAnswer getDomRVersion(GetDomRVersionCmd cmd); |
| |
| } |