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

com.day.cq.analytics.sitecatalyst.util.TokenProviderProxy Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
package com.day.cq.analytics.sitecatalyst.util;

import com.adobe.granite.crypto.CryptoException;
import org.apache.sling.api.resource.LoginException;
import org.osgi.annotation.versioning.ProviderType;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.io.IOException;
import java.util.Map;
import java.util.Set;

@ProviderType
public interface TokenProviderProxy {
    @Nullable
    String getAccessToken(@Nonnull String name) throws CryptoException, IOException, LoginException;

    @Nonnull
    Set> getTokenProvidersInfo();

    @Nullable
    String getApikey(String name);

    @Nullable
    String getServicePid(String name);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy