Skip to content
This repository was archived by the owner on Jan 17, 2023. It is now read-only.

Commit bcb2337

Browse files
committed
Close #121 add checksum field
1 parent c4db9ad commit bcb2337

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/groovy/docker/registry/web/support/Image.groovy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package docker.registry.web.support
22

33
class Image {
4+
String checksum
45
String displayName
56
String pullName
67
String architecture
@@ -22,7 +23,8 @@ class Image {
2223
@Override
2324
public String toString() {
2425
return "Image{" +
25-
"displayName='" + displayName + '\'' +
26+
"checksum='" + checksum + '\'' +
27+
", displayName='" + displayName + '\'' +
2628
", pullName='" + pullName + '\'' +
2729
", architecture='" + architecture + '\'' +
2830
", author='" + author + '\'' +

0 commit comments

Comments
 (0)