如何在wso2Is中实现ClaimsRetriever接口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在wso2Is中实现ClaimsRetriever接口相关的知识,希望对你有一定的参考价值。

我需要覆盖DefaultClaimsRetriever的默认行为,为此我实现了ClaimsRetriever接口。不幸的是,当覆盖ClaimsRetriever时,新类不会编译,因为编译器无法解析IdentityException类。这些是我定义的依赖项:

<dependencies>
    <dependency>
        <groupId>org.wso2.carbon</groupId>
        <artifactId>org.wso2.carbon.utils</artifactId>
        <version>${org.wso2.carbon.utils.version}</version>
    </dependency>
<dependency>
    <groupId>org.wso2.carbon.identity</groupId>
    <artifactId>org.wso2.carbon.identity.oauth</artifactId>
    <version>${org.wso2.carbon.identity.oauth.version}</version>
    <exclusions>
        <exclusion>
            <artifactId>slf4j.wso2</artifactId>
            <groupId>slf4j</groupId>
        </exclusion>
        <exclusion>
            <artifactId>xml-apis</artifactId>
            <groupId>org.apache.xerces</groupId>
        </exclusion>
        <exclusion>
            <artifactId>xercesImpl</artifactId>
            <groupId>org.apache.xerces</groupId>
        </exclusion>
        <exclusion>
            <artifactId>resolver</artifactId>
            <groupId>org.apache.xerces</groupId>
        </exclusion>
        <exclusion>
            <artifactId>serializer</artifactId>
            <groupId>org.apache.xerces</groupId>
        </exclusion>
    </exclusions>
</dependency>

    <dependency>
        <groupId>org.wso2.carbon</groupId>
        <artifactId>org.wso2.carbon.user.core</artifactId>
        <version>${org.wso2.carbon.user.core.version}</version>
    </dependency>

    <dependency>
        <groupId>org.wso2.carbon.identity.framework</groupId>
        <artifactId>org.wso2.carbon.identity.application.authentication.framework</artifactId>
        <version>${org.wso2.carbon.identity.application.authentication.framework.version}</version>
    </dependency>

    <dependency>
        <groupId>org.wso2.carbon</groupId>
        <artifactId>org.wso2.carbon.logging</artifactId>
        <version>${org.wso2.carbon.logging.version}</version>
    </dependency>

我错过了哪种依赖?

答案

试试org.wso2.carbon.identity.base。

以上是关于如何在wso2Is中实现ClaimsRetriever接口的主要内容,如果未能解决你的问题,请参考以下文章

如何在 WSO2IS 中为 PolicyEntitlementAdminService 生成存根

WSO2IS/APIM:如何在自定义身份验证器中分配用户角色

WSO2:如何在每个浏览器选项卡中保留不同的会话

我如何针对来自身份服务器的 SAML 断言授权用户(Wso2is 5.4.0)

如何在Castle.Core中实现IProxyGenerationHook的类中实现Equals和GetHashCode的覆盖方法?

如何在android中实现svm模型?