Examples of countModules()


Examples of org.jayasoft.woj.server.services.ModulesStatisticsService.countModules()

    public int countModules(Visibility v, String organisation) {
      if (LOGGER.isDebugEnabled()) {
        LOGGER.debug("getting modules count for visibility: " + v + " and organisation: " + organisation);
      }
        ModulesStatisticsService mss = WOJServer.getInstance().getDataService().getModuleDescriptorDao();
        return mss.countModules(v, organisation);
    }

    public int countRevisions(Visibility v, String organisation, String module) {
      if (LOGGER.isDebugEnabled()) {
        LOGGER.debug("getting revisions count for visibility: " + v + ", organisation: " + organisation + " and module: " + module);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.