forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerSpecConfig.java
More file actions
53 lines (42 loc) · 1.18 KB
/
Copy pathContainerSpecConfig.java
File metadata and controls
53 lines (42 loc) · 1.18 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
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.io.Serializable;
/**
* docker configs that will be exposed to the service
*
* @since {@link RemoteApiVersion#VERSION_1_29}
*/
@EqualsAndHashCode
@ToString
public class ContainerSpecConfig implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("File")
private ContainerSpecFile file;
@JsonProperty("ConfigID")
private String configID;
@JsonProperty("ConfigName")
private String configName;
public ContainerSpecFile getFile() {
return file;
}
public ContainerSpecConfig withFile(ContainerSpecFile file) {
this.file = file;
return this;
}
public String getConfigID() {
return configID;
}
public ContainerSpecConfig withConfigID(String configID) {
this.configID = configID;
return this;
}
public String getConfigName() {
return configName;
}
public ContainerSpecConfig withConfigName(String configName) {
this.configName = configName;
return this;
}
}