- package cz.senslog.analyzer.storage.permanent;
- import cz.senslog.analyzer.storage.Connection;
- import org.jdbi.v3.core.Jdbi;
- public class PermanentConnection extends Connection<Jdbi> {
- public PermanentConnection(Jdbi connection) {
- super(connection);
- }
- }
|