Examples of ModulesStatisticsService


Examples of org.jayasoft.woj.server.services.ModulesStatisticsService

    public int countOrganisations(Visibility v) {
      if (LOGGER.isDebugEnabled()) {
        LOGGER.debug("getting organisations count for visibility: " + v);
      }
        ModulesStatisticsService mss = WOJServer.getInstance().getDataService().getModuleDescriptorDao();
        return mss.countOrganisations(v);
    }
View Full Code Here

Examples of org.jayasoft.woj.server.services.ModulesStatisticsService

    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);
    }
View Full Code Here

Examples of org.jayasoft.woj.server.services.ModulesStatisticsService

    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);
      }
        ModulesStatisticsService mss = WOJServer.getInstance().getDataService().getModuleDescriptorDao();
        return mss.countRevisions(v, organisation, 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.