/*
* This file is part of the LCMC by Rasto Levrinc.
*
* Copyright (C) 2013, Rastislav Levrinc.
*
* The is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* The LCMC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with drbd; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package lcmc.drbd.ui.configdialog;
import lcmc.host.domain.Host;
import lcmc.drbd.domain.DrbdInstallation;
import lcmc.common.ui.WizardDialog;
import lcmc.host.ui.NewHostDialog;
import lcmc.drbd.ui.resource.VolumeInfo;
import lcmc.common.ui.utils.MyButton;
import lcmc.common.domain.util.Tools;
import javax.inject.Inject;
import javax.inject.Named;
/**
* An implementation of a dialog where user can enter either ip or hostname of
* the host and user name.
*/
@Named
public final class NewProxyHostDialog extends NewHostDialog {
private VolumeInfo volumeInfo;
private WizardDialog origDialog;
private WizardDialog nextDialogObject = null;
@Inject
private ConfigurationProxy configurationProxy;
public void init(final WizardDialog previousDialog,
final Host host,
final VolumeInfo volumeInfo,
final WizardDialog origDialog,
final DrbdInstallation drbdInstallation) {
super.init(previousDialog, host, drbdInstallation);
this.volumeInfo = volumeInfo;
this.origDialog = origDialog;
}
@Override
public WizardDialog nextDialog() {
if (nextDialogObject == null) {
configurationProxy.init(this, getHost(), volumeInfo, origDialog, getDrbdInstallation());
return configurationProxy;
} else {
return nextDialogObject;
}
}
@Override
protected void finishDialog() {
super.finishDialog();
if (isPressedFinishButton()) {
if (origDialog != null) {
nextDialogObject = origDialog;
setPressedButton(nextButton());
}
getHost().getCluster().addProxyHost(getHost());
if (volumeInfo != null) {
volumeInfo.getDrbdResourceInfo().resetDrbdResourcePanel();
volumeInfo.getBrowser().getGlobalInfo().addProxyHostNode(getHost());
}
}
}
@Override
protected String getHostDialogTitle() {
return Tools.getString("Dialog.Host.NewProxyHost.Title");
}
@Override
protected String getDescription() {
return Tools.getString("Dialog.Host.NewProxyHost.Description");
}
@Override
protected MyButton[] nextButtons() {
return new MyButton[]{buttonClass(finishButton())};
}
@Override
protected WizardDialog dialogAfterCancel() {
return origDialog;
}
}