All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.here.account.oauth2.retry.NoRetryPolicy Maven / Gradle / Ivy

package com.here.account.oauth2.retry;

/**
 * An implementation of {@code RetryPolicy} with default behaviour as no retry.
 */
public class NoRetryPolicy implements RetryPolicy {

    @Override
    public boolean shouldRetry(RetryContext retryContext) {
        return false;
    }

    @Override
    public int getNextRetryIntervalMillis(RetryContext retryContext) {
        return 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy