blob: ef618ec390257b86517e3475d67f19aca8433a54 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.netbeans.modules.glassfish.tooling.admin;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import org.netbeans.modules.glassfish.tooling.GlassFishIdeException;
import org.netbeans.modules.glassfish.tooling.data.GlassFishServer;
/**
* GlassFish Server Stop Cluster Command Entity.
* <p/>
* Holds data for command. Objects of this class are created by API user.
* <p/>
* @author Tomas Kraus, Peter Benedikovic
*/
@RunnerHttpClass(runner=RunnerHttpTarget.class)
@RunnerRestClass(runner=RunnerRestStopCluster.class)
public class CommandStopCluster extends CommandTarget {
////////////////////////////////////////////////////////////////////////////
// Class attributes //
////////////////////////////////////////////////////////////////////////////
/** Command string for stop-cluster command. */
private static final String COMMAND = "stop-cluster";
/** Error message for administration command execution exception .*/
private static final String ERROR_MESSAGE = "Cluster stop failed.";
////////////////////////////////////////////////////////////////////////////
// Static methods //
////////////////////////////////////////////////////////////////////////////
/**
* Stops cluster.
* <p/>
* @param server GlassFish server entity.
* @param target Cluster name.
* @return Stop cluster task response.
* @throws GlassFishIdeException When error occurred during administration
* command execution.
*/
public static ResultString stopCluster(GlassFishServer server,
String target) throws GlassFishIdeException {
Command command = new CommandStopCluster(target);
Future<ResultString> future
= ServerAdmin.<ResultString>exec(server, command);
try {
return future.get();
} catch (InterruptedException | ExecutionException
| CancellationException ie) {
throw new GlassFishIdeException(ERROR_MESSAGE, ie);
}
}
////////////////////////////////////////////////////////////////////////////
// Constructors //
////////////////////////////////////////////////////////////////////////////
/**
* Constructs an instance of GlassFish server stop-cluster command entity.
* <p/>
* @param target Target GlassFish cluster.
*/
public CommandStopCluster(String target) {
super(COMMAND, target);
}
}