Package org.b3log.latke.repository

Examples of org.b3log.latke.repository.AbstractRepository


        }

        final String repositoryName = request.getParameter("repositoryName");
        Repository repository = Repositories.getRepository(repositoryName);
        if (null == repository) {
            repository = new AbstractRepository(repositoryName) {
            };
        }

        repository.setCacheEnabled(false);
View Full Code Here

TOP

Related Classes of org.b3log.latke.repository.AbstractRepository

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.