forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInitializeSwarmCmdExec.java
More file actions
29 lines (22 loc) · 1014 Bytes
/
Copy pathInitializeSwarmCmdExec.java
File metadata and controls
29 lines (22 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.github.dockerjava.core.exec;
import com.github.dockerjava.api.command.InitializeSwarmCmd;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.core.MediaType;
import com.github.dockerjava.core.WebTarget;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class InitializeSwarmCmdExec extends AbstrSyncDockerCmdExec<InitializeSwarmCmd, Void>
implements InitializeSwarmCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(InitializeSwarmCmdExec.class);
public InitializeSwarmCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected Void execute(InitializeSwarmCmd command) {
WebTarget webResource = getBaseResource().path("/swarm/init");
LOGGER.trace("POST: {} ", webResource);
webResource.request().accept(MediaType.APPLICATION_JSON)
.post(command);
return null;
}
}