Class OAuthFlow.OAuthResult
- java.lang.Object
-
- jetbrains.buildServer.serverSide.oauth.OAuthFlow.OAuthResult
-
-
Constructor Summary
Constructors Constructor Description OAuthResult(String error, String errorDescription)
OAuthResult(String token, String scope, Integer expiresIn, String username, String refreshToken)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getError()
String
getErrorDescription()
Integer
getExpiresIn()
String
getRefreshToken()
String
getScope()
String
getToken()
String
getUsername()
boolean
isError()
-
-
-
Method Detail
-
isError
public boolean isError()
-
getToken
public String getToken()
-
getExpiresIn
public Integer getExpiresIn()
-
getScope
public String getScope()
-
getError
public String getError()
-
getErrorDescription
public String getErrorDescription()
-
getUsername
public String getUsername()
-
getRefreshToken
public String getRefreshToken()
-
-