Package org.jayasoft.woj.server.services

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


    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

    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

Related Classes of org.jayasoft.woj.server.services.ModulesStatisticsService

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.