taojintianxia commented on code in PR #20139:
URL: https://github.com/apache/shardingsphere/pull/20139#discussion_r945121125


##########
shardingsphere-test/shardingsphere-integration-test/shardingsphere-integration-test-env/src/test/java/org/apache/shardingsphere/test/integration/env/container/atomic/adapter/config/AdaptorContainerConfiguration.java:
##########
@@ -17,28 +17,19 @@
 
 package 
org.apache.shardingsphere.test.integration.env.container.atomic.adapter.config;
 
-import org.apache.shardingsphere.infra.database.type.DatabaseType;
+import lombok.Getter;
+import lombok.RequiredArgsConstructor;
 
 import java.util.Map;
 
 /**
  * Adaptor container configuration.
  */
-public interface AdaptorContainerConfiguration {
+@RequiredArgsConstructor
+@Getter
+public final class AdaptorContainerConfiguration {
     
-    /**
-     * Get wait strategy info.
-     * 
-     * @return wait strategy info
-     */
-    Map<String, String> getWaitStrategyInfo();
+    private final String proxyDataSourceName;
     
-    /**
-     * Get docker container mapping resources.
-     * 
-     * @param scenario scenario
-     * @param databaseType database type
-     * @return docker container resource mapping
-     */
-    Map<String, String> getResourceMappings(String scenario, DatabaseType 
databaseType);
+    private final Map<String, String> mountedResource;

Review Comment:
   done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to