blob: a29a152b83a43ca3ce572f5d59699c39a85bb904 [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.db.mysql.actions;
import org.netbeans.modules.db.mysql.DatabaseServer;
import org.netbeans.modules.db.mysql.DatabaseServer.ServerState;
import org.netbeans.modules.db.mysql.impl.ConnectManager;
import org.netbeans.modules.db.mysql.util.Utils;
import org.openide.nodes.Node;
import org.openide.util.HelpCtx;
import org.openide.util.actions.CookieAction;
/**
* Connects to a server
*
* @author David Van Couvering
*/
public class ConnectServerAction extends CookieAction {
private static final Class[] COOKIE_CLASSES =
new Class[] { DatabaseServer.class };
public ConnectServerAction() {
putValue("noIconInMenu", Boolean.TRUE);
}
@Override
protected boolean asynchronous() {
return false;
}
public String getName() {
return Utils.getBundle().getString("LBL_ConnectServerAction");
}
public HelpCtx getHelpCtx() {
return new HelpCtx(ConnectServerAction.class);
}
@Override
public boolean enable(Node[] activatedNodes) {
if ( activatedNodes == null || activatedNodes.length == 0 ) {
return false;
}
DatabaseServer server = activatedNodes[0].getCookie(DatabaseServer.class);
if (server == null) {
return false;
}
return server.getState() == ServerState.DISCONNECTED;
}
@Override
protected void performAction(Node[] activatedNodes) {
DatabaseServer server = activatedNodes[0].getCookie(DatabaseServer.class);
ConnectManager.getDefault().reconnect(server);
}
@Override
protected int mode() {
return MODE_EXACTLY_ONE;
}
@Override
protected Class<?>[] cookieClasses() {
return COOKIE_CLASSES;
}
}