
com.trimble.id.ITokenProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trimble-id Show documentation
Show all versions of trimble-id Show documentation
Trimble Identity OAuth Client library holds the client classes that are used for communicating with Trimble Identity Service
The newest version!
package com.trimble.id;
import java.util.concurrent.CompletableFuture;
public interface ITokenProvider {
CompletableFuture getAccessToken() throws SDKClientException;
default CompletableFuture getRefreshToken() throws SDKClientException {
return null;
}
default CompletableFuture getIdToken() throws SDKClientException {
return null;
}
default CompletableFuture revokeRefreshToken() throws SDKClientException {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy