Class DockerError
- java.lang.Object
- 
- org.keycloak.representations.docker.DockerError
 
- 
 public class DockerError extends Object 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 SummaryConstructors Constructor Description DockerError(String errorCode, String message, List<DockerAccess> dockerErrorDetails)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)List<DockerAccess>getDockerErrorDetails()StringgetErrorCode()StringgetMessage()inthashCode()StringtoString()
 
- 
- 
- 
Constructor Detail- 
DockerErrorpublic DockerError(String errorCode, String message, List<DockerAccess> dockerErrorDetails) 
 
- 
 - 
Method Detail- 
getErrorCodepublic String getErrorCode() 
 - 
getMessagepublic String getMessage() 
 - 
getDockerErrorDetailspublic List<DockerAccess> getDockerErrorDetails() 
 
- 
 
-