public void recordAcceptResponseTime(
     String parentApplicationName, short parentApplicationType, int elapsedTime) {
   final ContextMetric contextMetric = this.metricRegistry.getResponseMetric();
   contextMetric.addAcceptHistogram(parentApplicationName, parentApplicationType, elapsedTime);
 }
 public void recordUserAcceptResponseTime(int elapsedTime) {
   final ContextMetric contextMetric = this.metricRegistry.getResponseMetric();
   contextMetric.addUserAcceptHistogram(elapsedTime);
 }
 public void recordContextMetric(int elapsedTime) {
   final ContextMetric contextMetric = this.metricRegistry.getResponseMetric();
   contextMetric.addResponseTime(elapsedTime);
 }