kz.greetgo.security.session.jdbc.ResultConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.security Show documentation
Show all versions of greetgo.security Show documentation
Security infrastructure used in greetgo!
The newest version!
package kz.greetgo.security.session.jdbc;
import java.sql.ResultSet;
import java.sql.SQLException;
public interface ResultConverter {
T convert(ResultSet rs) throws SQLException;
}