Examples of StaticHelpPanel


Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

//        listTable.addColumnSortHandler(sortHandler);
        listTable.getColumnSortList().push(valueColumn);

        if(helpText!=null)
        {
            StaticHelpPanel helpPanel = new StaticHelpPanel(helpText);
            panel.add(helpPanel.asWidget());
        }

        panel.add(listTable);

        DefaultPager pager = new DefaultPager();
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

                }

            }

            helpTexts.appendHtmlConstant("</table>");
            StaticHelpPanel help = new StaticHelpPanel(helpTexts.toSafeHtml());

            form.setFields(items.toArray(new FormItem[]{}));
            panel.add(help.asWidget());
            panel.add(form.asWidget());

            WindowContentBuilder builder = new WindowContentBuilder(
                    panel,
                    new DialogueOptions(
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

                        public void onDelete(ModelNode entity) {
                            // unsupported
                        }
                    });

            StaticHelpPanel help = new StaticHelpPanel(helpTexts.toSafeHtml());

            layout.add(tools.asWidget());
            layout.add(help.asWidget());
            layout.add(form.asWidget());

            // handle resets within this scope
            coordinator.addHandler(SystemEvent.TYPE, new SystemEvent.Handler() {
                @Override
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

//        listTable.addColumnSortHandler(sortHandler);
        listTable.getColumnSortList().push(valueColumn);

        if(helpText!=null)
        {
            StaticHelpPanel helpPanel = new StaticHelpPanel(helpText);
            panel.add(helpPanel.asWidget());
        }

        panel.add(listTable);

        DefaultPager pager = new DefaultPager();
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        html.appendHtmlConstant("<li>").appendEscaped("Locale: The user interface language.");
        html.appendHtmlConstant("<li>").appendEscaped("Analytics: We track browser and operating system information in order to improve the user interface. ");
        html.appendEscaped("You can disable the analytics feature at anytime.");
        html.appendHtmlConstant("<li>").appendEscaped("Security Cache: If disabled the security context will be re-created everytime you access a dialog (performance hit).");
        html.appendHtmlConstant("</ul>");
        StaticHelpPanel help = new StaticHelpPanel(html.toSafeHtml());
        layout.add(help.asWidget());
        layout.add(form.asWidget());

        window.setWidth(480);
        window.setHeight(360);
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

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



        StaticHelpPanel help = new StaticHelpPanel(
                "<table style='vertical-align:top' cellpadding=3>\n" +
                        "<tr>\n" +
                        "<td>\n" +
                        "Monitor\n" +
                        "</td>\n" +
                        "<td>\n" +
                        "The monitor role has the fewest permissions and restricts the user to viewing the configuration and the current state. The monitor role does not have permission to view sensitive data.\n" +
                        "</td></tr>\n" +
                        "\n" +
                        "<tr>\n" +
                        "<td>\n" +
                        "Operator\n" +
                        "</td>\n" +
                        "<td>\n" +
                        "The operator role has monitor permissions and can also change the runtime state but not the persistent configuration. For example, the operator can start or stop servers.The operator role does not have permission to view sensitive data.\n" +
                        "</td></tr>\n" +
                        "\n" +
                        "<tr>\n" +
                        "<td>\n" +
                        "Maintainer\n" +
                        "</td>\n" +
                        "<td>\n" +
                        "The Maintainer role has the same permissions as the Operator role, and additionally can change the persistent configuration. For example, the Maintainer can deploy an application. The maintainer role does not have permission to view or modify sensitive data.\n" +
                        "</td></tr>\n" +
                        "\n" +
                        "<tr>\n" +
                        "<td>\n" +
                        "Deployer\n" +
                        "</td>\n" +
                        "<td>\n" +
                        "The Deployer role has the permissions of the Maintainer, but with those permissions constrained to operating on application resources.\n" +
                        "</td></tr>\n" +
                        "\n" +
                        "<tr>\n" +
                        "<td>\n" +
                        "Administrator\n" +
                        "</td>\n" +
                        "<td>\n" +
                        "The Administrator role has the permissions of the Maintainer. This role also has permission to view and modify sensitive data, including passwords, but excluding the management security auditing system. The Administrator role can modify administrative users and roles. \n" +
                        "</td></tr>\n" +
                        "\n" +
                        "<tr>\n" +
                        "<td>\n" +
                        "Auditor\n" +
                        "</td>\n" +
                        "<td>\n" +
                        "The Auditor role can view and modify the configuration settings for the management security auditing system. The Auditor role includes the Monitor role, and also allows the Auditor to view but not change the rest of the security configuration.\n" +
                        "</td></tr>\n" +
                        "\n" +
                        "<tr>\n" +
                        "<td>\n" +
                        "SuperUser\n" +
                        "</td>\n" +
                        "<td>\n" +
                        "The SuperUser role has the combined permissions of the Administrator and Auditor roles. This role has all available permissions.\n" +
                        "</td></tr>\n" +
                        "</table>\n");

        panel.add(help.asWidget());


        panel.add(new ContentHeaderLabel("Select Role"));
        panel.add(new ContentDescription("Select the role you want to act on their behalf."));
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

                }

            }

            helpTexts.appendHtmlConstant("</table>");
            StaticHelpPanel help = new StaticHelpPanel(helpTexts.toSafeHtml());

            form.setFields(items.toArray(new FormItem[]{}));
            panel.add(help.asWidget());
            panel.add(form.asWidget());

            WindowContentBuilder builder = new WindowContentBuilder(
                    panel,
                    new DialogueOptions(
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        html.appendHtmlConstant("<li>").appendEscaped("Analytics: We track browser and operating system information in order to improve the user interface. ");
        html.appendEscaped("You can disable the analytics feature at anytime.");
        //html.appendHtmlConstant("<li>").appendEscaped("Security Cache: If disabled the security context will be re-created everytime you access a dialog (performance hit).");
        html.appendHtmlConstant("</ul>");
        StaticHelpPanel help = new StaticHelpPanel(html.toSafeHtml());
        layout.add(help.asWidget());
        layout.add(form.asWidget());

        window.setWidth(480);
        window.setHeight(360);
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

        html.appendHtmlConstant("<ul>");
        html.appendHtmlConstant("<li>").appendEscaped("Locale: The user interface language.");
        html.appendHtmlConstant("<li>").appendEscaped("Analytics: We track browser and operating system information in order to improve the user interface. ");
        html.appendEscaped("You can disable the analytics feature at anytime.");
        html.appendHtmlConstant("</ul>");
        StaticHelpPanel help = new StaticHelpPanel(html.toSafeHtml());
        layout.add(help.asWidget());
        layout.add(form.asWidget());

        window.setWidth(480);
        window.setHeight(360);
View Full Code Here

Examples of org.jboss.as.console.client.shared.help.StaticHelpPanel

//        listTable.addColumnSortHandler(sortHandler);
        listTable.getColumnSortList().push(valueColumn);

        if(helpText!=null)
        {
            StaticHelpPanel helpPanel = new StaticHelpPanel(helpText);
            panel.add(helpPanel.asWidget());
        }

        panel.add(listTable);

        DefaultPager pager = new DefaultPager();
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.