Class IdcsRoleMapperRxProviderBase.Builder<B extends IdcsRoleMapperRxProviderBase.Builder<B>>

    • Constructor Detail

      • Builder

        protected Builder()
        Default constructor.
    • Method Detail

      • config

        public B config​(Config config)
        Update this builder state from configuration. Expects:
        Parameters:
        config - current node must have "oidc-config" as one of its children
        Returns:
        updated builder instance
      • oidcConfig

        public B oidcConfig​(OidcConfig config)
        Use explicit OidcConfig instance, e.g. when using it also for OIDC provider.
        Parameters:
        config - oidc specific configuration, must have at least identity endpoint and client credentials configured
        Returns:
        updated builder instance
      • oidcConfig

        protected OidcConfig oidcConfig()
        Get the configuration to access IDCS instance.
        Returns:
        oidc config
      • subjectTypes

        public B subjectTypes​(SubjectType... types)
        Configure supported subject types. By default SubjectType.USER is used if none configured.
        Parameters:
        types - types to configure as supported for mapping
        Returns:
        updated builder instance
      • addSubjectType

        public B addSubjectType​(SubjectType type)
        Add a supported subject type. If none added, SubjectType.USER is used. If any added, only the ones added will be used (e.g. if you want to use both SubjectType.USER and SubjectType.SERVICE, both need to be added.
        Parameters:
        type - subject type to add to the list of supported types
        Returns:
        updated builder instance