AccessTokenProvider.java
662 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ConsumerType
* com.adobe.granite.crypto.CryptoException
* org.apache.sling.api.resource.ResourceResolver
*/
package com.adobe.granite.auth.oauth;
import aQute.bnd.annotation.ConsumerType;
import com.adobe.granite.crypto.CryptoException;
import java.io.IOException;
import java.util.Map;
import org.apache.sling.api.resource.ResourceResolver;
@ConsumerType
public interface AccessTokenProvider {
public String getAccessToken(ResourceResolver var1, String var2, Map<String, String> var3) throws CryptoException, IOException, NullPointerException;
}