DBZ-6136 Add toJson to TestContainers ConnectorConfiguration impl

This commit is contained in:
Chris Cranford 2023-02-21 12:30:27 -05:00 committed by Jakub Cechacek
parent fcc44edf0b
commit 24fe8fe572

View File

@ -113,6 +113,10 @@ public ConnectorConfiguration with(String key, Double value) {
return this;
}
public String toJson() {
return getConfiguration().toString();
}
ObjectNode getConfiguration() {
return configNode;
}