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

com.iobeam.api.auth.AuthHandler Maven / Gradle / Ivy

package com.iobeam.api.auth;

import com.iobeam.api.ApiException;

import java.io.IOException;
import java.util.concurrent.Callable;

/**
 * Handler interface for refreshing auth tokens.
 */
public interface AuthHandler extends Callable {

    public void setForceRefresh(boolean force);

    public AuthToken refreshToken() throws IOException, ApiException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy