com.codahale.metrics.jdbi3.strategies.BasicSqlNameStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-jdbi3 Show documentation
Show all versions of metrics-jdbi3 Show documentation
Provides instrumentation of Jdbi3 data access objects
package com.codahale.metrics.jdbi3.strategies;
/**
* Collects metrics by respective SQLObject methods.
*/
public class BasicSqlNameStrategy extends DelegatingStatementNameStrategy {
public BasicSqlNameStrategy() {
super(DefaultNameStrategy.CHECK_EMPTY,
DefaultNameStrategy.SQL_OBJECT);
}
}