Package org.geoserver.security.web.user

Examples of org.geoserver.security.web.user.UserTablePanel


        super(userGroupServiceName, group.copy()); //copy before passing into parent

        //name not changeable on edit
        get("form:groupname").setEnabled(false);

        ((Form)get("form")).add(new UserTablePanel("users", userGroupServiceName,
            new GeoServerDataProvider<GeoServerUser>() {
            @Override
            protected List<GeoServerDataProvider.Property<GeoServerUser>> getProperties() {
                return Arrays.asList(UserListProvider.USERNAME);
            }
View Full Code Here

TOP

Related Classes of org.geoserver.security.web.user.UserTablePanel

Copyright © 2018 www.massapicom. 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.