Package com.cloudbees.sdk.pool

Source Code of com.cloudbees.sdk.pool.ServerPoolDelete

/*
* 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.pool;

import com.cloudbees.api.BeesClient;
import com.cloudbees.api.ServerPoolDeleteResponse;
import com.cloudbees.sdk.cli.BeesCommand;
import com.cloudbees.sdk.cli.CLICommand;
import com.cloudbees.sdk.utils.Helper;

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

    public ServerPoolDelete() {
        super();
    }

    @Override
    protected String getUsageMessage() {
        return "POOL_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 delete without prompting" );
        }
        return true;
    }


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

        ServerPoolDeleteResponse res = client.serverPoolDelete(getParameterID());
        if (isTextOutput()) {
            System.out.println("Pool [" + getAccount() + "/" + getParameterID() + "] deleted");
        } else  printOutput(res, ServerPoolDeleteResponse.class);

        return true;
    }
}
TOP

Related Classes of com.cloudbees.sdk.pool.ServerPoolDelete

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.