forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainer.java
More file actions
107 lines (78 loc) · 1.92 KB
/
Copy pathContainer.java
File metadata and controls
107 lines (78 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.github.dockerjava.api.model;
import org.apache.commons.lang.builder.ToStringBuilder;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
*
* @author Konstantin Pelykh (kpelykh@gmail.com)
*
*/
@JsonIgnoreProperties(ignoreUnknown=true)
public class Container {
@JsonProperty("Command")
private String command;
@JsonProperty("Created")
private long created;
@JsonProperty("Id")
private String id;
@JsonProperty("Image")
private String image;
@JsonProperty("Names")
private String[] names;
@JsonProperty("Ports")
public Port[] ports;
@JsonProperty("Status")
private String status;
public String getId() {
return id;
}
public String getCommand() {
return command;
}
public String getImage() {
return image;
}
public long getCreated() {
return created;
}
public String getStatus() {
return status;
}
public Port[] getPorts() {
return ports;
}
public String[] getNames() {
return names;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonIgnoreProperties(ignoreUnknown = true)
public static class Port {
@JsonProperty("IP")
private String ip;
@JsonProperty("PrivatePort")
private Integer privatePort;
@JsonProperty("PublicPort")
private Integer publicPort;
@JsonProperty("Type")
private String type;
public String getIp() {
return ip;
}
public Integer getPrivatePort() {
return privatePort;
}
public Integer getPublicPort() {
return publicPort;
}
public String getType() {
return type;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}
}