Skip to content

Commit c8aa7c7

Browse files
authored
Move CassandraDatabaseDelegate and CassandraQueryWaitStrategy to org.testcontainers.cassandra (#11105)
1 parent a7f14aa commit c8aa7c7

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

modules/cassandra/src/main/java/org/testcontainers/cassandra/CassandraContainer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package org.testcontainers.cassandra;
22

33
import com.github.dockerjava.api.command.InspectContainerResponse;
4-
import org.testcontainers.cassandra.delegate.CassandraDatabaseDelegate;
5-
import org.testcontainers.cassandra.wait.CassandraQueryWaitStrategy;
64
import org.testcontainers.containers.GenericContainer;
75
import org.testcontainers.ext.ScriptUtils;
86
import org.testcontainers.ext.ScriptUtils.ScriptLoadException;
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
package org.testcontainers.cassandra.delegate;
1+
package org.testcontainers.cassandra;
22

33
import lombok.RequiredArgsConstructor;
44
import lombok.extern.slf4j.Slf4j;
55
import org.apache.commons.lang3.ArrayUtils;
66
import org.apache.commons.lang3.StringUtils;
7-
import org.testcontainers.cassandra.CassandraContainer;
87
import org.testcontainers.containers.Container;
98
import org.testcontainers.containers.ContainerState;
109
import org.testcontainers.containers.ExecConfig;
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
package org.testcontainers.cassandra.wait;
1+
package org.testcontainers.cassandra;
22

33
import org.rnorth.ducttape.TimeoutException;
4-
import org.testcontainers.cassandra.delegate.CassandraDatabaseDelegate;
54
import org.testcontainers.containers.ContainerLaunchException;
65
import org.testcontainers.containers.wait.strategy.AbstractWaitStrategy;
76
import org.testcontainers.delegate.DatabaseDelegate;

modules/cassandra/src/main/java/org/testcontainers/containers/delegate/CassandraDatabaseDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* Cassandra database delegate
1616
*
17-
* @deprecated use {@link org.testcontainers.cassandra.delegate.CassandraDatabaseDelegate} instead.
17+
* @deprecated use {@link org.testcontainers.cassandra.CassandraDatabaseDelegate} instead.
1818
*/
1919
@Slf4j
2020
@RequiredArgsConstructor

modules/cassandra/src/main/java/org/testcontainers/containers/wait/CassandraQueryWaitStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Waits until Cassandra returns its version
1515
*
16-
* @deprecated use {@link org.testcontainers.cassandra.wait.CassandraQueryWaitStrategy} instead.
16+
* @deprecated use {@link org.testcontainers.cassandra.CassandraQueryWaitStrategy} instead.
1717
*/
1818
@Deprecated
1919
public class CassandraQueryWaitStrategy extends AbstractWaitStrategy {

0 commit comments

Comments
 (0)