Examples of PingCommand


Examples of com.cloud.agent.api.PingCommand

    }

    @Override
    public PingCommand getCurrentStatus(long id) {
        return new PingCommand(Host.Type.L2Networking, id);
    }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

            }
        } catch (BigSwitchVnsApiException e) {
            s_logger.error("getControlClusterStatus failed", e);
            return null;
        }
        return new PingCommand(Host.Type.L2Networking, id);
    }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

        return true;
    }

    @Override
    public PingCommand getCurrentStatus(final long id) {
        return new PingCommand(Host.Type.ExternalFirewall, id);
    }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

    @Override
    public PingCommand getCurrentStatus(final long id) {
        if (!refreshVnmcConnection()) {
            return null;
        }
        return new PingCommand(Host.Type.ExternalFirewall, id);
    }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

        return _name;
    }

    @Override
    public PingCommand getCurrentStatus(final long id) {
        return new PingCommand(Host.Type.TrafficMonitor, id);
    }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

                }

                ServerResource resource = _resource;

                if (resource != null) {
                    PingCommand cmd = resource.getCurrentStatus(_id);
                    if (cmd == null) {
                        s_logger.warn("Unable to get current status on " + _id + "(" + _name + ")");
                        return;
                    }
                    if (s_logger.isDebugEnabled()) {
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

    @Test
    public void testPingCommandStatusOk() throws ConfigurationException, ExecutionException {
        _resource.setConnection(_connection);
        when(_connection.login()).thenReturn(true);
        PingCommand ping = _resource.getCurrentStatus(1);
        assertTrue(ping != null);
        assertTrue(ping.getHostId() == 1);
        assertTrue(ping.getHostType() == Host.Type.ExternalFirewall);
    }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

    @Test
    public void testPingCommandStatusFail() throws ConfigurationException, ExecutionException {
        _resource.setConnection(_connection);
        when(_connection.login()).thenReturn(false);
        PingCommand ping = _resource.getCurrentStatus(1);
        assertTrue(ping == null);
    }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

        return new StartupCommand[] {startCmd, storePoolCmd};
    }

    @Override
    public final PingCommand getCurrentStatus(final long id) {
        PingCommand pingCmd = new PingRoutingCommand(getType(), id, null, getHostVmStateReport());

        if (s_logger.isDebugEnabled()) {
            s_logger.debug("Ping host " + _name + " (IP " + _agentIp + ")");
        }
View Full Code Here

Examples of com.cloud.agent.api.PingCommand

        return true;
    }

    @Override
    public PingCommand getCurrentStatus(final long id) {
        return new PingCommand(Host.Type.ExternalFirewall, id);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.