Class MDSSandbox

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

public class MDSSandbox extends Object
Manage sandboxes and get access to metadata in a sandbox.
  • Method Details

    • listSandboxes

      public List<String> listSandboxes() throws RepositoryException
      Get a list of the names of existing sandboxes.
      Returns:
      the list of sandbox names
      Throws:
      RepositoryException - if an error occurs.
    • createSandbox

      public void createSandbox(String sandboxName) throws RepositoryException
      Create a new sandbox. On successful creation, the specified sandbox name is set in this SandboxAccess instance.
      Parameters:
      sandboxName - the name of the new sandbox.
      Throws:
      RepositoryException - if an error occurs.
    • commitSandbox

      public void commitSandbox(String sandboxName) throws RepositoryException
      Commit the changes in the sandbox so that they are visible outside the sandbox. On a successful commit, the sandbox is destroyed.
      Throws:
      RepositoryException - if an error occurs.
    • abortSandbox

      public void abortSandbox(String sandboxName) throws RepositoryException
      Abort the changes in the sandbox. This destroys the sandbox.
      Throws:
      RepositoryException - if an error occurs.