Package org.apache.jetspeed.portlets.security.rolemgt

Examples of org.apache.jetspeed.portlets.security.rolemgt.RoleTreeTable


        assertEquals("/role/manager/sales", depthNodePath);
    }
   
    public void testFindTreeNode()
    {
        DefaultMutableTreeNode treeNode = SecurityApplicationUtils.findTreeNode(new RoleTreeTable(), "/role/XY/A/a1");
        assertNotNull(treeNode);
        assertEquals("/role/XY/A/a1", ((RoleTreeItem) treeNode.getUserObject()).getFullPath());
    }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.portlets.security.rolemgt.RoleTreeTable

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.