Skip to content

Commit 9ae14cb

Browse files
authored
Refactor configuration of SSL to allow override with custom config (docker-java#596)
* Refactor configuration of SSL to allow override with custom config * Store SSLConfig instead SSLContext * avoid NPE * prepare release * Coding style changes
1 parent 72597d7 commit 9ae14cb

File tree

12 files changed

+552
-531
lines changed

12 files changed

+552
-531
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<groupId>com.github.docker-java</groupId>
1111
<artifactId>docker-java</artifactId>
1212
<packaging>jar</packaging>
13-
<version>3.0.1-SNAPSHOT</version>
13+
<version>3.0.0-kostyasha-3</version>
1414

1515
<name>docker-java</name>
1616
<url>https://github.com/docker-java/docker-java</url>

src/main/java/com/github/dockerjava/api/command/DockerCmdExecFactory.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
import java.io.Closeable;
44
import java.io.IOException;
55

6-
import javax.net.ssl.SSLContext;
7-
86
import com.github.dockerjava.core.DockerClientConfig;
97
import com.github.dockerjava.core.RemoteApiVersion;
108

@@ -117,8 +115,6 @@ public interface DockerCmdExecFactory extends Closeable {
117115

118116
DisconnectFromNetworkCmd.Exec createDisconnectFromNetworkCmdExec();
119117

120-
DockerCmdExecFactory withSSLContext(SSLContext sslContext);
121-
122118
@Override
123119
void close() throws IOException;
124120

0 commit comments

Comments
 (0)