com.codahale.metrics.jdbi3.strategies.NaiveNameStrategy 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;
/**
* Very simple strategy, can be used with any JDBI loader to build basic statistics.
*/
public class NaiveNameStrategy extends DelegatingStatementNameStrategy {
public NaiveNameStrategy() {
super(DefaultNameStrategy.CHECK_EMPTY,
DefaultNameStrategy.NAIVE_NAME);
}
}