File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed
src/main/java/com/github/dockerjava/api/model Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 77 <version >9</version >
88 </parent >
99
10- <groupId >com.github.yuting-liu </groupId >
10+ <groupId >com.github.docker-java </groupId >
1111 <artifactId >docker-java</artifactId >
1212 <packaging >jar</packaging >
13- <version >3.1.0</version >
13+ <version >3.1.0-SNAPSHOT </version >
1414
1515 <name >docker-java</name >
16- <url >https://github.com/yuting-liu /docker-java</url >
16+ <url >https://github.com/docker-java /docker-java</url >
1717 <description >Java API Client for Docker</description >
1818
1919 <licenses >
Original file line number Diff line number Diff line change 22
33import com .fasterxml .jackson .annotation .JsonIgnoreProperties ;
44import com .fasterxml .jackson .annotation .JsonProperty ;
5+ import org .apache .commons .lang .builder .EqualsBuilder ;
6+ import org .apache .commons .lang .builder .HashCodeBuilder ;
7+ import org .apache .commons .lang .builder .ToStringBuilder ;
58
69import javax .annotation .CheckForNull ;
710import java .io .Serializable ;
@@ -83,4 +86,19 @@ public IoRecursiveConfig withValue(Long value) {
8386 this .value = value ;
8487 return this ;
8588 }
89+
90+ @ Override
91+ public String toString () {
92+ return ToStringBuilder .reflectionToString (this );
93+ }
94+
95+ @ Override
96+ public boolean equals (Object o ) {
97+ return EqualsBuilder .reflectionEquals (this , o );
98+ }
99+
100+ @ Override
101+ public int hashCode () {
102+ return HashCodeBuilder .reflectionHashCode (this );
103+ }
86104}
You can’t perform that action at this time.
0 commit comments