forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateVolumeCmdImpl.java
More file actions
82 lines (65 loc) · 1.92 KB
/
Copy pathCreateVolumeCmdImpl.java
File metadata and controls
82 lines (65 loc) · 1.92 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.github.dockerjava.core.command;
import static com.google.common.base.Preconditions.checkNotNull;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.dockerjava.api.command.CreateVolumeCmd;
import com.github.dockerjava.api.command.CreateVolumeResponse;
/**
* Create a volume.
*
* @author Marcus Linke
*/
public class CreateVolumeCmdImpl extends AbstrDockerCmd<CreateVolumeCmd, CreateVolumeResponse> implements
CreateVolumeCmd {
@JsonProperty("Name")
private String name;
@JsonProperty("Labels")
private Map<String, String> labels;
@JsonProperty("Driver")
private String driver;
@JsonProperty("DriverOpts")
private Map<String, String> driverOpts;
public CreateVolumeCmdImpl(CreateVolumeCmd.Exec exec) {
super(exec);
}
@Override
public String getName() {
return name;
}
@Override
public Map<String, String> getLabels() {
return labels;
}
@Override
public String getDriver() {
return driver;
}
@Override
public Map<String, String> getDriverOpts() {
return driverOpts;
}
@Override
public CreateVolumeCmdImpl withName(String name) {
checkNotNull(name, "name was not specified");
this.name = name;
return this;
}
@Override
public CreateVolumeCmdImpl withLabels(Map<String, String> labels) {
checkNotNull(labels, "labels was not specified");
this.labels = labels;
return this;
}
@Override
public CreateVolumeCmdImpl withDriver(String driver) {
checkNotNull(driver, "driver was not specified");
this.driver = driver;
return this;
}
@Override
public CreateVolumeCmd withDriverOpts(Map<String, String> driverOpts) {
checkNotNull(driverOpts, "driverOpts was not specified");
this.driverOpts = driverOpts;
return this;
}
}