Package org.jclouds.compute.domain

Examples of org.jclouds.compute.domain.NodeState


     *
     * @param exchange
     * @return
     */
    public NodeState getNodeState(Exchange exchange) {
        NodeState nodeState = null;
        String state = getEndpoint().getNodeState();
        if (state != null) {
            nodeState = NodeState.valueOf(state);
        }

View Full Code Here

TOP

Related Classes of org.jclouds.compute.domain.NodeState

Copyright © 2018 www.massapicom. 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.