| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| 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.SetFirewallRulesCommand; |
| import com.cloud.agent.api.routing.SetPortForwardingRulesCommand; |
| import com.cloud.agent.api.routing.SetStaticNatRulesCommand; |
| import com.cloud.agent.api.routing.VmDataCommand; |
| import com.cloud.simulator.MockVMVO; |
| 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); |
| 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 SetFirewallRules(SetFirewallRulesCommand 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); |
| Map<String, MockVMVO> getVms(String hostGuid); |
| |
| } |