/* * RHQ Management Platform * Copyright (C) 2005-2010 Red Hat, Inc. * All rights reserved. * * This program 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 version 2 of the License. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.coregui.client.bundle.deploy; import java.util.LinkedHashMap; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.form.fields.RadioGroupItem; import com.smartgwt.client.widgets.form.fields.events.ChangedEvent; import com.smartgwt.client.widgets.form.fields.events.ChangedHandler; import org.rhq.coregui.client.components.wizard.AbstractWizardStep; /** * @author Jay Shaughnessy * */ public class GetDeploymentOptionsStep extends AbstractWizardStep { static private final String DEPLOY_LATER = "later"; static private final String DEPLOY_NOW = "now"; private final BundleDeployWizard wizard; private DynamicForm form; private RadioGroupItem rgDeployTimeItem; public GetDeploymentOptionsStep(BundleDeployWizard wizard) { this.wizard = wizard; } public String getName() { return "Deploy Options"; } public Canvas getCanvas() { if (form == null) { form = new DynamicForm(); form.setWidth100(); form.setNumCols(2); form.setColWidths("50%", "*"); rgDeployTimeItem = new RadioGroupItem("deployTime", MSG.view_bundle_deployWizard_getOptions_deployTime()); LinkedHashMap<String, String> deployTimeValues = new LinkedHashMap<String, String>(); deployTimeValues.put(DEPLOY_NOW, MSG.view_bundle_deployWizard_getOptions_deployNow()); deployTimeValues.put(DEPLOY_LATER, MSG.view_bundle_deployWizard_getOptions_deployLater()); rgDeployTimeItem.setRequired(true); rgDeployTimeItem.setValueMap(deployTimeValues); rgDeployTimeItem.setValue(DEPLOY_NOW); wizard.setDeployNow(true); rgDeployTimeItem.addChangedHandler(new ChangedHandler() { public void onChanged(ChangedEvent event) { wizard.setDeployNow(DEPLOY_NOW.equals(event.getValue())); } }); form.setItems(rgDeployTimeItem); } return form; } public boolean nextPage() { return form.validate(); } }