Package org.apache.cocoon.auth

Examples of org.apache.cocoon.auth.StandardUser


    /**
     * @see org.apache.cocoon.auth.SecurityHandler#login(java.util.Map)
     */
    public synchronized User login(final Map loginContext) throws Exception {
        final User user = new StandardUser("anonymous"+this.number);
        this.number++;
        return user;
    }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.auth.StandardUser

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.