Examples of JndiNameItem


Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

        layout.add(new HTML("<h3>"+ Console.CONSTANTS.subsys_jca_xadataSource_step1()+"</h3>"));

        final Form<XADataSource> form = new Form<XADataSource>(XADataSource.class);

        TextBoxItem name = new TextBoxItem("name", "Name");
        TextBoxItem jndiName = new JndiNameItem("jndiName", "JNDI Name");
        //CheckBoxItem enabled = new CheckBoxItem("enabled", "Enabled?");
        //enabled.setValue(Boolean.TRUE);

        form.setFields(name, jndiName);
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

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

        final Form<AdminObject> form = new Form(AdminObject.class);

        TextBoxItem jndiName = new JndiNameItem("jndiName", "JNDI Name");

        TextBoxItem classItem = new TextBoxItem("adminClass", "Class Name");

        form.setFields(jndiName, classItem);
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

    }

    public Widget asWidget() {


        JndiNameItem jndiName = new JndiNameItem("jndiName", "JNDI Name");

        TextBoxItem groupId = new TextBoxItem("groupId", "Group ID", false);
        TextBoxItem connector = new TextBoxItem("connector", "Connector");

        CheckBoxItem failoverInitial = new CheckBoxItem("failoverInitial", "Failover Initial?");
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

    }

    public static class JndiNameItemFactory implements FormItemFactory {
        @Override
        public ObservableFormItem[] makeFormItem(PropertyBinding propBinding, FormItemObserver... observers) {
            JndiNameItem jndiNameItem = new JndiNameItem(propBinding.getJavaName(), propBinding.getLabel());
            jndiNameItem.setRequired(propBinding.isRequired());
            return new ObservableFormItem[] {new ObservableFormItem(propBinding, jndiNameItem, observers)};
        }
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

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

        final Form<MailSession> form = new Form(MailSession.class);

        TextBoxItem jndi = new JndiNameItem("jndiName", "JNDI Name");

        form.setFields(jndi);

        DialogueOptions options = new DialogueOptions(
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

        toolStrip.addToolButtonRight(verifyBtn);

        detailPanel.add(toolStrip.asWidget());

        final TextItem nameItem = new TextItem("name", "Name");
        TextBoxItem jndiItem = new JndiNameItem("jndiName", "JNDI");
        StatusItem enabledFlagItem = new StatusItem("enabled", "Is enabled?");
        TextItem driverItem = new TextItem("driverName", "Driver");

        CheckBoxItem shareStatements = new CheckBoxItem("sharePreparedStatements", "Share Prepared Statements");
        NumberBoxItem statementCacheSize = new NumberBoxItem("prepareStatementCacheSize", "Statement Cache Size");
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

        layout.add(new HTML("<h3>"+ Console.CONSTANTS.subsys_jca_xadataSource_step1()+"</h3>"));

        final Form<XADataSource> form = new Form<XADataSource>(XADataSource.class);

        TextBoxItem name = new TextBoxItem("name", "Name");
        TextBoxItem jndiName = new JndiNameItem("jndiName", "JNDI Name");
        //CheckBoxItem enabled = new CheckBoxItem("enabled", "Enabled?");
        //enabled.setValue(Boolean.TRUE);

        form.setFields(name, jndiName);
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

        layout.setStyleName("window-content");
        final Form<Topic> form = new Form<Topic>(Topic.class);


        TextBoxItem name = new TextBoxItem("name", "Name");
        TextBoxItem jndiName = new JndiNameItem("jndiName", "JNDI Name");

        form.setFields(name, jndiName);

        final FormHelpPanel helpPanel = new FormHelpPanel(
                new FormHelpPanel.AddressCallback() {
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

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

        final Form<AdminObject> form = new Form(AdminObject.class);

        TextBoxItem jndiName = new JndiNameItem("jndiName", "JNDI Name");

        TextBoxItem classItem = new TextBoxItem("adminClass", "Class Name");

        form.setFields(jndiName, classItem);
View Full Code Here

Examples of org.jboss.as.console.client.widgets.forms.items.JndiNameItem

        layout.add(new HTML("<h2>Connection Definition Step1/2</h2>"));

        final Form<ConnectionDefinition> form = new Form(ConnectionDefinition.class);

        TextBoxItem jndiName = new JndiNameItem("jndiName", "JNDI Name");
        TextBoxItem classItem = new TextBoxItem("connectionClass", "Connection Class");

        form.setFields(jndiName, classItem);

        final FormHelpPanel helpPanel = new FormHelpPanel(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.