PermanentConnection.java 272 B

1234567891011
  1. package cz.senslog.analyzer.storage.permanent;
  2. import cz.senslog.analyzer.storage.Connection;
  3. import org.jdbi.v3.core.Jdbi;
  4. public class PermanentConnection extends Connection<Jdbi> {
  5. public PermanentConnection(Jdbi connection) {
  6. super(connection);
  7. }
  8. }