forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecret.java
More file actions
85 lines (67 loc) · 1.5 KB
/
Copy pathSecret.java
File metadata and controls
85 lines (67 loc) · 1.5 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
83
84
85
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.Date;
/**
* Used for Listing secret.
*
* @since {@link RemoteApiVersion#VERSION_1_25}
*/
public class Secret implements Serializable {
public static final long serialVersionUID = 1L;
/**
* @since 1.24
*/
@JsonProperty("ID")
private String id;
/**
* @since 1.24
*/
@JsonProperty("CreatedAt")
private Date createdAt;
/**
* @since 1.24
*/
@JsonProperty("UpdatedAt")
private Date updatedAt;
/**
* @since 1.24
*/
@JsonProperty("Spec")
private ServiceSpec spec;
/**
* @since 1.24
*/
@JsonProperty("Version")
private ResourceVersion version;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(Date updatedAt) {
this.updatedAt = updatedAt;
}
public ServiceSpec getSpec() {
return spec;
}
public void setSpec(ServiceSpec spec) {
this.spec = spec;
}
public ResourceVersion getVersion() {
return version;
}
public void setVersion(ResourceVersion version) {
this.version = version;
}
}