Skip to content

Commit

Permalink
Add javadoc on (main) classes similar to testcontainers-java
Browse files Browse the repository at this point in the history
  • Loading branch information
mrotteveel committed Jan 2, 2024
1 parent 7dee0b7 commit 9f270c2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Version History
- Updated org.testcontainers:jdbc to 1.19.3
- Updated various test-dependencies
- Updated Maven build plugins
- Add javadoc on (main) classes similar to testcontainers-java

1.3.0
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
import java.security.NoSuchAlgorithmException;
import java.time.ZoneId;

/**
* Testcontainers implementation for Firebird.
* <p>
* Supported image: {@code jacobalberty/firebird}
* <p>
* Exposed ports: 3050
*/
public class FirebirdContainer<SELF extends FirebirdContainer<SELF>> extends JdbcDatabaseContainer<SELF> {

private static final Logger log = LoggerFactory.getLogger(FirebirdContainer.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
import org.testcontainers.jdbc.ConnectionUrl;
import org.testcontainers.utility.DockerImageName;

/**
* Factory for Firebird containers.
*/
public class FirebirdContainerProvider extends JdbcDatabaseContainerProvider {

public static final String USER_PARAM = "user";
Expand Down

0 comments on commit 9f270c2

Please sign in to comment.