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 Summary
Constructors Constructor Description DockerError(String errorCode, String message, List<DockerAccess> dockerErrorDetails)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<DockerAccess>
getDockerErrorDetails()
String
getErrorCode()
String
getMessage()
int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
DockerError
public DockerError(String errorCode, String message, List<DockerAccess> dockerErrorDetails)
-
-
Method Detail
-
getErrorCode
public String getErrorCode()
-
getMessage
public String getMessage()
-
getDockerErrorDetails
public List<DockerAccess> getDockerErrorDetails()
-
-