We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec8f1f9 commit bcfcb47Copy full SHA for bcfcb47
1 file changed
src/main/java/com/github/dockerjava/api/command/InspectExecResponse.java
@@ -23,6 +23,9 @@ public class InspectExecResponse {
23
@JsonProperty("Running")
24
private boolean running;
25
26
+ @JsonProperty("ExitCode")
27
+ private int exitCode;
28
+
29
public String getId() {
30
return id;
31
}
@@ -43,6 +46,10 @@ public boolean isRunning() {
43
46
return running;
44
47
45
48
49
+ public int getExitCode() {
50
+ return exitCode;
51
+ }
52
53
@Override
54
public String toString() {
55
return ToStringBuilder.reflectionToString(this);
0 commit comments