public final Request refresh()

in uber-core/src/main/java/com/uber/sdk/core/auth/BaseRefreshableAuthenticator.java [14:19]


    public final Request refresh(Response response) throws IOException {
        if (isRefreshable() && canRefresh(response) && canRetry(response)) {
            return doRefresh(response);
        }
        return null;
    }