Package org.jboss.as.console.client.domain.hosts

Source Code of org.jboss.as.console.client.domain.hosts.HostConfigSection

package org.jboss.as.console.client.domain.hosts;

import org.jboss.as.console.client.widgets.LHSNavItem;
import org.jboss.as.console.client.widgets.SimpleLHSSection;

/**
* @author Heiko Braun
* @date 3/4/11
*/
class HostConfigSection extends SimpleLHSSection {

    public HostConfigSection() {
        super();

        LHSNavItem paths = new LHSNavItem("Paths", "hosts/host-paths");
        LHSNavItem jvms = new LHSNavItem("Virtual Machines", "hosts/host-interfaces");
        LHSNavItem sockets = new LHSNavItem("Socket Binding Groups", "hosts/host-socket-bindings");
        LHSNavItem properties = new LHSNavItem("System Properties", "host/host-properties");

        addNavItems(paths, jvms, sockets, properties);
    }

}
TOP

Related Classes of org.jboss.as.console.client.domain.hosts.HostConfigSection

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.