Package com.cloudbees.sdk.server

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

/*
* 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.ServerRestoreResponse;
import com.cloudbees.sdk.cli.BeesCommand;
import com.cloudbees.sdk.cli.CLICommand;
import com.cloudbees.sdk.pool.ServerPoolBase;
import com.cloudbees.sdk.utils.Helper;

/**
* @author Fabian Donze
*/
@BeesCommand(group = "Server", description = "Restore a server")
@CLICommand("app:server:restore")
public class ServerRestore extends ServerPoolBase {
    private Boolean force;

    public ServerRestore() {
        super();
    }

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

    public void setForce(Boolean force) {
        this.force = force;
    }

    /**
     * This method is call before parsing the command line.
     * This is the place to add command line options
     *
     * @return true if successful, false otherwise
     */
    @Override
    protected boolean preParseCommandLine() {
        if (super.preParseCommandLine()) {
            addOption( "f", "force", false, "force restore without prompting" );
        }
        return true;
    }


    @Override
    protected boolean execute() throws Exception {
        if (force == null || !force.booleanValue()) {
            if (!Helper.promptMatches("Are you sure you want to restore this server [" + getParameterID() + "]: (y/n) ", "[yY].*")) {
                return true;
            }
        }
        BeesClient client = getBeesClient(BeesClient.class);

        ServerRestoreResponse res = client.serverRestore(getParameterID());
        if (isTextOutput()) {
            System.out.println("Server [" + res.getServerId() + "] " + res.getStatus());

        } else  printOutput(res, ServerRestoreResponse.class);

        return true;
    }
}
TOP

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

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.