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

io.corbel.iam.service.UpgradeTokenService Maven / Gradle / Ivy

There is a newer version: 1.44.0
Show newest version
package io.corbel.iam.service;

import io.corbel.iam.exception.UnauthorizedException;
import io.corbel.lib.token.reader.TokenReader;

import java.util.Set;

public interface UpgradeTokenService {

    Set getScopesFromTokenToUpgrade(String assertion) throws UnauthorizedException;

    void upgradeToken(String assertion, TokenReader tokenReader, Set scopes) throws UnauthorizedException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy