Interface IdPEngine


public interface IdPEngine
  • Method Details

    • obtainUserInformationWithEarlyImport

      TranslationResult obtainUserInformationWithEarlyImport(IdentityTaV entity, String group, TranslationProfile profile, String requester, Optional<EntityInGroup> requesterEntity, String protocol, String protocolSubType, boolean allowIdentityCreate, UserImportConfigs userImportConfigs) throws EngineException
      Obtains a complete and translated information about entity, authorized to be published. This variant assumes that the entity should be tried to be imported first and only then resolved. Therefore this variant is useful for 3rd party queries where queried user may at the time of query be missing.
      Parameters:
      entity - entity for which the query is performed
      group - the group from which attributes shall be resolved
      profile - output translation profile to be consulted. Can be null -> then default profile is used.
      requester - identity of requester
      requesterEntity - if present then attributes of this entity in the given group will be added to the output profile context
      protocol - identifier of access protocol
      protocolSubType - sub identifier of protocol (e.g. binding)
      allowIdentityCreate - whether a dynamic id can be established
      Returns:
      obtained data
      Throws:
      EngineException
    • obtainUserInformationWithEnrichingImport

      TranslationResult obtainUserInformationWithEnrichingImport(EntityParam entity, String group, TranslationProfile profile, String requester, Optional<EntityInGroup> requesterEntity, String protocol, String protocolSubType, boolean allowIdentityCreate, UserImportConfigs userImportConfigs) throws EngineException
      Obtains a complete and translated information about entity, authorized to be published. This variant assumes that the entity should be imported after being resolved, i.e. import is enriching already existing entity. Therefore this is useful for obtaining information about authenticated user.
      Parameters:
      entity -
      group -
      profile -
      requester -
      protocol -
      protocolSubType -
      allowIdentityCreate -
      userImports -
      Returns:
      Throws:
      EngineException
    • getIdentity

      IdentityParam getIdentity(List<IdentityParam> validIdentities, String selectedIdentity) throws EngineException, eu.unicore.samly2.exceptions.SAMLRequesterException
      Finds selected identity among validIdentities and returns it as IdentityParam. Argument must be given using comparable identity value.
      Parameters:
      validIdentities -
      selectedIdentity -
      Returns:
      Throws:
      EngineException
      eu.unicore.samly2.exceptions.SAMLRequesterException