| 329 | } |
| 330 | |
| 331 | bool OAuthService::HasRefreshToken() const |
| 332 | { |
| 333 | std::lock_guard<std::recursive_mutex> lock(mMutex); |
| 334 | return !refreshToken.Read().empty(); |
| 335 | } |
| 336 | |
| 337 | std::string OAuthService::GetAccessToken() const |
| 338 | { |
no test coverage detected