Package com.cloudbees.sdk.server

Source Code of com.cloudbees.sdk.server.ServerGetInfo

/*
* Copyright 2010-2014, CloudBees Inc.
*
* Licensed 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.cloudbees.sdk.server;

import com.cloudbees.api.BeesClient;
import com.cloudbees.api.ServerInfo;
import com.cloudbees.sdk.cli.BeesCommand;
import com.cloudbees.sdk.cli.CLICommand;
import com.cloudbees.sdk.pool.ServerPoolBase;
import com.cloudbees.sdk.utils.Helper;

import java.util.Map;

/**
* @author Fabian Donze
*/
@BeesCommand(group = "Server", description = "Get server information")
@CLICommand("app:server:info")
public class ServerGetInfo extends ServerPoolBase {
    public ServerGetInfo() {
        super();
    }

    @Override
    protected String getUsageMessage() {
        return "SERVER_ID";
    }

    @Override
    protected boolean execute() throws Exception {
        BeesClient client = getBeesClient(BeesClient.class);

        ServerInfo serverInfo = client.serverInfo(getParameterID());
        if (isTextOutput()) {
            System.out.println("Server ID  : " + serverInfo.getId());
            System.out.println("size       : " + serverInfo.getSize());
            System.out.println("state      : " + serverInfo.getState());
            System.out.println("pool ID    : " + serverInfo.getPoolId());
            Map<String, String> params = serverInfo.getParameters();
            if (params != null) {
                for (Map.Entry<String, String> entry : params.entrySet()) {
                    System.out.println(Helper.getPaddedString(entry.getKey(), 11) + ": " + entry.getValue());
                }
            }
            if (serverInfo.getApplicationIDs() != null) {
                System.out.println("applications:");
                for (String appId : serverInfo.getApplicationIDs()) {
                    System.out.println("  " + appId);
                }
            }

        } else  printOutput(serverInfo, ServerInfo.class);

        return true;
    }
}
TOP

Related Classes of com.cloudbees.sdk.server.ServerGetInfo

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.