Class GoogleErrorResponse
- java.lang.Object
-
- jetbrains.buildServer.serverSide.oauth.google.pojo.GoogleErrorResponse
-
public class GoogleErrorResponse extends Object
-
-
Constructor Summary
Constructors Constructor Description GoogleErrorResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getError()
String
getErrorDescription()
String
getExplainedErrorDescription()
boolean
isAuthenticationError()
boolean
isPermissionDeniedError()
GoogleErrorResponse
setError(String error)
GoogleErrorResponse
setErrorDescription(String errorDescription)
-
-
-
Method Detail
-
getErrorDescription
@Nullable public String getErrorDescription()
-
getError
@NotNull public String getError()
-
isAuthenticationError
public boolean isAuthenticationError()
-
isPermissionDeniedError
public boolean isPermissionDeniedError()
-
getExplainedErrorDescription
@NotNull public String getExplainedErrorDescription()
-
setErrorDescription
public GoogleErrorResponse setErrorDescription(@Nullable String errorDescription)
-
setError
public GoogleErrorResponse setError(@NotNull String error)
-
-