mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
- Will decide based on even - MASTER or odd - BACKUP router id - BumpUpPriority never fails and always returns true - SwitchOver is untested and most likely won't work
84 lines
3.4 KiB
Java
84 lines
3.4 KiB
Java
// 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.*;
|
|
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);
|
|
|
|
CheckRouterAnswer checkRouter(CheckRouterCommand cmd);
|
|
|
|
Answer bumpPriority(BumpUpPriorityCommand cmd);
|
|
}
|