Package org.goobi.production.flow.statistics

Examples of org.goobi.production.flow.statistics.StatisticsManager


   * @return instance of {@link StatisticsMode.PRODUCTION} {@link StatisticsManager}
   */

  public StatisticsManager getStatisticsManager1() {
    if (this.statisticsManager1 == null) {
      this.statisticsManager1 = new StatisticsManager(StatisticsMode.PRODUCTION, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager1;
  }
View Full Code Here


   *
   * @return instance of {@link StatisticsMode.THROUGHPUT} {@link StatisticsManager}
   */
  public StatisticsManager getStatisticsManager2() {
    if (this.statisticsManager2 == null) {
      this.statisticsManager2 = new StatisticsManager(StatisticsMode.THROUGHPUT, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager2;
  }
View Full Code Here

   *
   * @return instance of {@link StatisticsMode.CORRECTIONS} {@link StatisticsManager}
   */
  public StatisticsManager getStatisticsManager3() {
    if (this.statisticsManager3 == null) {
      this.statisticsManager3 = new StatisticsManager(StatisticsMode.CORRECTIONS, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager3;
  }
View Full Code Here

   *
   * @return instance of {@link StatisticsMode.STORAGE} {@link StatisticsManager}
   */
  public StatisticsManager getStatisticsManager4() {
    if (this.statisticsManager4 == null) {
      this.statisticsManager4 = new StatisticsManager(StatisticsMode.STORAGE, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager4;
  }
View Full Code Here

  /*
   * Statistische Auswertung
   */

  public void StatisticsStatusVolumes() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.STATUS_VOLUMES, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }
View Full Code Here

        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }

  public void StatisticsUsergroups() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.USERGROUPS, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }
View Full Code Here

        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }

  public void StatisticsRuntimeSteps() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.SIMPLE_RUNTIME_STEPS, this.myFilteredDataSource, FacesContext
        .getCurrentInstance().getViewRoot().getLocale());
  }
View Full Code Here

    this.statisticsManager = new StatisticsManager(StatisticsMode.SIMPLE_RUNTIME_STEPS, this.myFilteredDataSource, FacesContext
        .getCurrentInstance().getViewRoot().getLocale());
  }

  public void StatisticsProduction() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.PRODUCTION, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
  }
View Full Code Here

    this.statisticsManager = new StatisticsManager(StatisticsMode.PRODUCTION, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
  }

  public void StatisticsStorage() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.STORAGE, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
  }
View Full Code Here

    this.statisticsManager = new StatisticsManager(StatisticsMode.STORAGE, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
  }

  public void StatisticsCorrection() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.CORRECTIONS, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
  }
View Full Code Here

TOP

Related Classes of org.goobi.production.flow.statistics.StatisticsManager

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.