All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.as.console.client.shared.subsys.jca.wizard.XADatasourceStep2 Maven / Gradle / Ivy

Go to download

Bundles the core AS7 console as a GWT module. Includes minor customizations to support extensions.

There is a newer version: 0.7.0.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors
 * as indicated by the @author tags. All rights reserved.
 * See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU Lesser General Public License, v. 2.1.
 * This program is distributed in the hope that it will be useful, but WITHOUT A
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License,
 * v.2.1 along with this distribution; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA  02110-1301, USA.
 */

package org.jboss.as.console.client.shared.subsys.jca.wizard;

import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.event.logical.shared.SelectionEvent;
import com.google.gwt.event.logical.shared.SelectionHandler;
import com.google.gwt.user.cellview.client.CellTable;
import com.google.gwt.user.cellview.client.TextColumn;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.TabPanel;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.view.client.SingleSelectionModel;
import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.shared.subsys.jca.model.JDBCDriver;
import org.jboss.as.console.client.shared.subsys.jca.model.XADataSource;
import org.jboss.ballroom.client.widgets.forms.ComboBox;
import org.jboss.ballroom.client.widgets.tables.DefaultCellTable;
import org.jboss.ballroom.client.widgets.tables.DefaultPager;
import org.jboss.ballroom.client.widgets.window.DialogueOptions;
import org.jboss.ballroom.client.widgets.window.WindowContentBuilder;

import java.util.List;

/**
 * @author Heiko Braun
 * @date 5/6/11
 */
public class XADatasourceStep2 {

    private NewXADatasourceWizard wizard;
    private SingleSelectionModel selectionModel;
    private XADataSource editedEntity;
    private CellTable table;
    private ComboBox groupSelection;
    private boolean isStandalone;
    private Integer selectedTab;

    public XADatasourceStep2(NewXADatasourceWizard wizard) {
        this.wizard = wizard;
        this.isStandalone = wizard.getBootstrap().isStandalone();
    }

    void edit(XADataSource dataSource) {
        this.editedEntity = dataSource;
    }

    Widget asWidget() {
        VerticalPanel layout = new VerticalPanel();
        layout.setStyleName("window-content");

        layout.add(new HTML("

"+ Console.CONSTANTS.subsys_jca_xadataSource_step2()+"

")); // --- table = new DefaultCellTable(5); TextColumn nameColumn = new TextColumn() { @Override public String getValue(JDBCDriver record) { return record.getName(); } }; TextColumn xaClassColumn = new TextColumn() { @Override public String getValue(JDBCDriver record) { return record.getXaDataSourceClass(); } }; table.addColumn(nameColumn, "Name"); table.addColumn(xaClassColumn, "Datasource Class"); selectionModel = new SingleSelectionModel(); table.setSelectionModel(selectionModel); // filter and select first record provisionTable(table); DefaultPager pager = new DefaultPager(); pager.setDisplay(table); VerticalPanel driverPanel = new VerticalPanel(); driverPanel.add(table); driverPanel.add(pager); // -- TabPanel tabs = new TabPanel(); tabs.setStyleName("default-tabpanel"); tabs.addSelectionHandler(new SelectionHandler() { @Override public void onSelection(SelectionEvent event) { selectedTab = event.getSelectedItem(); } }); tabs.add(driverPanel, "Chose Driver"); tabs.selectTab(0); layout.add(tabs); ClickHandler submitHandler = new ClickHandler() { @Override public void onClick(ClickEvent event) { SingleSelectionModel selection = (SingleSelectionModel) table.getSelectionModel(); JDBCDriver driver = selection.getSelectedObject(); if(driver!=null) { // force selected driver editedEntity.setDriverName(driver.getName()); editedEntity.setDriverClass(driver.getDriverClass()); editedEntity.setDataSourceClass(driver.getXaDataSourceClass()); editedEntity.setMajorVersion(driver.getMajorVersion()); editedEntity.setMinorVersion(driver.getMinorVersion()); wizard.onConfigureDriver(editedEntity); } else { Console.warning(Console.CONSTANTS.subsys_jca_dataSource_select_driver(), "If no driver is available you may need to deploy one!"); } } }; ClickHandler cancelHandler = new ClickHandler() { @Override public void onClick(ClickEvent event) { wizard.getPresenter().closeDialogue(); } }; DialogueOptions options = new DialogueOptions( Console.CONSTANTS.common_label_next(),submitHandler, Console.CONSTANTS.common_label_cancel(),cancelHandler ); return new WindowContentBuilder(layout,options).build(); } private void provisionTable(final CellTable table) { /*wizard.getPresenter().loadDriver(new SimpleCallback>() { @Override public void onSuccess(List drivers) { // } }); */ List drivers = wizard.getDrivers(); table.setRowCount(drivers.size(), true); table.setRowData(drivers); // clear selection JDBCDriver selectedDriver = selectionModel.getSelectedObject(); if (selectedDriver != null) selectionModel.setSelected(selectedDriver, false); // new default selection if (drivers.size() > 0) { selectionModel.setSelected(drivers.get(0), true); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy