forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerSpecSecret.java
More file actions
54 lines (42 loc) · 1.18 KB
/
Copy pathContainerSpecSecret.java
File metadata and controls
54 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
54
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.io.Serializable;
/**
* docker secrets that will be exposed to the service
*
* @since {@link RemoteApiVersion#VERSION_1_26}
*/
@EqualsAndHashCode
@ToString
public class ContainerSpecSecret implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("File")
private ContainerSpecFile file;
@JsonProperty("SecretID")
private String secretId;
@JsonProperty("SecretName")
private String secretName;
public ContainerSpecFile getFile() {
return file;
}
public ContainerSpecSecret withFile(ContainerSpecFile file) {
this.file = file;
return this;
}
public String getSecretId() {
return secretId;
}
public ContainerSpecSecret withSecretId(String secretId) {
this.secretId = secretId;
return this;
}
public String getSecretName() {
return secretName;
}
public ContainerSpecSecret withSecretName(String secretName) {
this.secretName = secretName;
return this;
}
}