Class NamedKeyInfoGeneratorManager

java.lang.Object
org.opensaml.xmlsec.keyinfo.NamedKeyInfoGeneratorManager

public class NamedKeyInfoGeneratorManager extends Object
A manager for named sets of KeyInfoGeneratorFactory instances. Each name key serves as an index to an instance of KeyInfoGeneratorManager.
  • Field Details

    • log

      private final org.slf4j.Logger log
      Logger.
    • managers

      private final Map<String,KeyInfoGeneratorManager> managers
      The set of named factory managers.
    • defaultManager

      private final KeyInfoGeneratorManager defaultManager
      The default manager for unnamed factories.
    • useDefaultManager

      private boolean useDefaultManager
      Flag indicating whether the default (unnamed) factory manager will be used to lookup factories for credentials.
  • Constructor Details

    • NamedKeyInfoGeneratorManager

      public NamedKeyInfoGeneratorManager()
      Constructor.
  • Method Details

    • setUseDefaultManager

      public void setUseDefaultManager(boolean newValue)
      Set the option as to whether the default (unnamed) manager will be used to lookup factories for credentials if there is no appropriate named factory for the credential type.
      Parameters:
      newValue - the new option value
    • getManagerNames

      @Nonnull public Set<String> getManagerNames()
      Get the (unmodifiable) set of names of factory managers currently available.
      Returns:
      the set of all manager names currently configured
    • getManager

      @Nonnull public KeyInfoGeneratorManager getManager(@Nonnull String name)
      Get the named factory manager. If it doesn't exist yet, one will be created.
      Parameters:
      name - the name of the manager to obtain
      Returns:
      the named manager
    • removeManager

      public void removeManager(@Nonnull String name)
      Remove the named factory manager, and all its managed factories.
      Parameters:
      name - the name of the manager to remove
    • registerFactory

      public void registerFactory(@Nonnull String name, @Nonnull KeyInfoGeneratorFactory factory)
      Register a factory within the specified named manager. If that named manager does not currently exist, it will be created.
      Parameters:
      name - the name of the factory manager
      factory - the factory to register
    • deregisterFactory

      public void deregisterFactory(@Nonnull String name, @Nonnull KeyInfoGeneratorFactory factory)
      De-register a factory within the specified named manager.
      Parameters:
      name - the name of the factory manager
      factory - the factory to de-register
    • registerDefaultFactory

      public void registerDefaultFactory(@Nonnull KeyInfoGeneratorFactory factory)
      Register a factory with the default (unnamed) manager.
      Parameters:
      factory - the factory to register
    • deregisterDefaultFactory

      public void deregisterDefaultFactory(@Nonnull KeyInfoGeneratorFactory factory)
      De-register a factory with the default (unnamed) manager.
      Parameters:
      factory - the factory to de-register
    • getDefaultManager

      @Nonnull public KeyInfoGeneratorManager getDefaultManager()
      Get the default (unnamed) factory manager.
      Returns:
      the default factory manager
    • getFactory

      @Nullable public KeyInfoGeneratorFactory getFactory(@Nonnull String name, @Nonnull Credential credential)
      Lookup and return the named generator factory for the type of the credential specified.
      Parameters:
      name - the name of the factory manger
      credential - the credential to evaluate
      Returns:
      a factory for generators appropriate for the specified credential