001package io.ebean.metric; 002 003import io.ebean.meta.MetaTimedMetric; 004 005/** 006 * Extend public MetaTimedMetric with ability to set details from profile location. 007 */ 008public interface TimedMetricStats extends MetaTimedMetric { 009 010 /** 011 * Additionally set the location. 012 */ 013 void setLocation(String location); 014 015 /** 016 * Override the name based on profile location. 017 */ 018 void setName(String name); 019}