All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.trace.stat.ServiceStatCounter Maven / Gradle / Ivy

package com.github.trace.stat;

public class ServiceStatCounter extends StatCounter {
  private final String module;
  private final String method;

  public ServiceStatCounter(String module, String method) {
    super();
    this.module = module;
    this.method = method;
  }

  public String getModule() {
    return module;
  }

  public String getMethod() {
    return method;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy