Class RepositoryManager

java.lang.Object
oracle.rules.sdk2.repository.RepositoryManager

public final class RepositoryManager extends Object
To access list of repository types, and get instance of a repository type.
  • Method Details

    • getMDSRuleRepository

      public static RuleRepository getMDSRuleRepository(RepositoryContext context) throws RepositoryException
      A convenience method to get a RuleRepository instance for an MDS based repository.
      Parameters:
      context - Contextual information for creating the RuleRepository instance. If may be null if no additional context is required.
      Returns:
      a RuleRepository for an MDS based repository.
      Throws:
      RepositoryException - if error creating the repository instance
    • getRegisteredRepositoryTypes

      public static List<RepositoryType> getRegisteredRepositoryTypes()
      Returns a List of known repository types. The list includes MDS by default.
      Returns:
      a List of registered repository types. The object in the list is an instance of RepositoryType
    • getRegisteredRepositoryType

      public static RepositoryType getRegisteredRepositoryType(String repoTypeKey)
      Get a RepositoryType by its key name
      Parameters:
      repoTypeKey - key of the repository type
      Returns:
      a RepositoryType object with the given key name. Returns null if the repository type is not registered.
    • createRuleRepositoryInstance

      public static RuleRepository createRuleRepositoryInstance(RepositoryType repoType) throws RepositoryException
      Create an un-initialized repository instance of the given type
      Parameters:
      repoType - the type of the repository instance
      Returns:
      an un-initialized RuleRepository object
      Throws:
      RepositoryException - if error when creating the repository instance