Package org.apache.james.user.jdbc

Examples of org.apache.james.user.jdbc.DefaultUsersJdbcRepository


     *
     * @return the user repository
     * @throws Exception
     */
    protected UsersRepository getUsersRepository() throws Exception {
        DefaultUsersJdbcRepository res = new DefaultUsersJdbcRepository();
        String tableString = "defusers";
        configureAbstractJdbcUsersRepository(res, tableString);
        return res;
    }
View Full Code Here

TOP

Related Classes of org.apache.james.user.jdbc.DefaultUsersJdbcRepository

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.