File tree Expand file tree Collapse file tree
src/main/java/com/kpelykh/docker/client/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44import org .codehaus .jackson .annotate .JsonProperty ;
55
6- import java .util .Arrays ;
76import java .util .Map ;
87
98/**
@@ -64,6 +63,12 @@ public class ContainerInspectResponse {
6463 @ JsonProperty ("HostConfig" )
6564 private HostConfig hostConfig ;
6665
66+ /**
67+ * http://blog.docker.io/2014/03/docker-0-9-introducing-execution-drivers-and-libcontainer/
68+ */
69+ @ JsonProperty ("ExecDriver" )
70+ private String execDriver ;
71+
6772 public String getId () {
6873 return id ;
6974 }
Original file line number Diff line number Diff line change 11package com .kpelykh .docker .client .model ;
22
3+ import org .codehaus .jackson .annotate .JsonIgnore ;
34import org .codehaus .jackson .annotate .JsonProperty ;
45
56import java .util .Arrays ;
@@ -45,7 +46,9 @@ public String[] getBinds() {
4546 public void setBinds (String [] binds ) {
4647 this .binds = binds ;
4748 }
48-
49+
50+ // TODO - causes jackson conflict with tests
51+ @ JsonIgnore
4952 public void setBinds (final BoundHostVolumes volumes ) {
5053 setBinds (volumes .asBinds ());
5154 }
You can’t perform that action at this time.
0 commit comments