Package org.apache.jetspeed.security.impl

Examples of org.apache.jetspeed.security.impl.TransientUser


        try
        {
            // test revokeAllPrincipal a Transient User representation to ensure
            // that use-case is covered too because it requires additional
            // handling (lookup of the principal Id first)
            pms.revokeAllPermissions(new TransientUser("test"));
            Permissions permissions = pms.getPermissions(user);
            assertEquals(
                "permissions should be empty for user " + user.getName(),
                0,
                (Collections.list(permissions.elements())).size());
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.security.impl.TransientUser

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.