Class DockerError
java.lang.Object
org.keycloak.representations.docker.DockerError
JSON Representation of a Docker Error in the following format:
 {
  "code": "UNAUTHORIZED",
  "message": "access to the requested resource is not authorized",
  "detail": [
    {
      "Type": "repository",
      "Name": "samalba/my-app",
      "Action": "pull"
    },
    {
      "Type": "repository",
      "Name": "samalba/my-app",
      "Action": "push"
    }
  ]
 }
- 
Constructor Summary
ConstructorsConstructorDescriptionDockerError(String errorCode, String message, List<DockerAccess> dockerErrorDetails)  - 
Method Summary