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

Commit

Permalink
Close #121 add checksum field
Browse files Browse the repository at this point in the history
  • Loading branch information
atcol committed Jan 4, 2015
1 parent c4db9ad commit bcb2337
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/groovy/docker/registry/web/support/Image.groovy
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package docker.registry.web.support

class Image {
String checksum
String displayName
String pullName
String architecture
Expand All @@ -22,7 +23,8 @@ class Image {
@Override
public String toString() {
return "Image{" +
"displayName='" + displayName + '\'' +
"checksum='" + checksum + '\'' +
", displayName='" + displayName + '\'' +
", pullName='" + pullName + '\'' +
", architecture='" + architecture + '\'' +
", author='" + author + '\'' +
Expand Down

0 comments on commit bcb2337

Please sign in to comment.