Package org.apache.james.user.jdbc

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


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

TOP

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

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.