io.ifar.skidroad.jdbi.CountByState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of skid-road-jdbi Show documentation
Show all versions of skid-road-jdbi Show documentation
Provides JDBI-based LogFileTracker implementation
package io.ifar.skidroad.jdbi;
/**
*
*/
public class CountByState {
private final String state;
private final int count;
public CountByState(String state, int count) {
this.state = state;
this.count = count;
}
public String getState() {
return state;
}
public int getCount() {
return count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy