File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
src/main/java/org/firebirdsql/testcontainers Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Version History
66- Updated org.testcontainers: jdbc to 1.19.3
77- Updated various test-dependencies
88- Updated Maven build plugins
9+ - Add javadoc on (main) classes similar to testcontainers-java
910
10111.3.0
1112-----
Original file line number Diff line number Diff line change 99import java .security .NoSuchAlgorithmException ;
1010import java .time .ZoneId ;
1111
12+ /**
13+ * Testcontainers implementation for Firebird.
14+ * <p>
15+ * Supported image: {@code jacobalberty/firebird}
16+ * <p>
17+ * Exposed ports: 3050
18+ */
1219public class FirebirdContainer <SELF extends FirebirdContainer <SELF >> extends JdbcDatabaseContainer <SELF > {
1320
1421 private static final Logger log = LoggerFactory .getLogger (FirebirdContainer .class );
Original file line number Diff line number Diff line change 55import org .testcontainers .jdbc .ConnectionUrl ;
66import org .testcontainers .utility .DockerImageName ;
77
8+ /**
9+ * Factory for Firebird containers.
10+ */
811public class FirebirdContainerProvider extends JdbcDatabaseContainerProvider {
912
1013 public static final String USER_PARAM = "user" ;
You can’t perform that action at this time.
0 commit comments