Class SchemaBrowser

java.lang.Object
oracle.rules.sdk2.datamodel.Browser
oracle.rules.sdk2.datamodel.SchemaBrowser

public final class SchemaBrowser extends Browser
Provides for browsing of XML Schemas by mapping the schema to JAXB classes. The JAXB classes may be loaded into the RuleDictionary to serve as FactTypes in Rule definitions.

Generated JAXB Classes are visible to the SchemaBrowser after the schema has been added to SchemaBrowser's schemapath using the JAXB schema compiler.

After adding or removing schemas, the NodeTable must be re-retrieved using the getNodeTable method.

The jaxb schema compiler is invoked when the schema is added to the schema path list of the schema browser. The jaxb classes are contained in a user specified package name.

Each element of the schema is an an instance of a JaxbNodes or JavaPackages.

The JaxbNode and JavaPackageNode instances are organized into a collection that is returned by the NodeTable property. A NodeTable is collection the immedidate children of the top level of generated package names. The generated package names are created when schemas are added to the schema path.
The class hierarchy is represented by the nestedNodeTable property. A NodeTable contains the children of each subsequent level in the hierarchy. A JavaPackageNode has a NodeTable representing its children. The children of a JPackage are other JPackage's and JaxbNode's. A JaxbNode has no children and therefore does not have a node table.
Loading of a browsed schema into the datamodel is the responsibility of JaxbNode and JPackageNode classes.
  • Field Details

  • Constructor Details

    • SchemaBrowser

      public SchemaBrowser(RuleDictionary rd, String srcOutdir, String classOutdir, URI schemaPathRoot) throws SDKException
      Creates a Schema browser that is tied to a RuleDictionary instance.
      Parameters:
      rd - a RuleDictionary that contains a datamodel for loading
      srcOutdir - the directory to generate the JAXB source file into
      classOutdir - the directory to put the compiled JAXB class files in
      schemaPathRoot - the root path for the schemas. If specified, the schema locations will be stored relative to this path, so one can move the entire project a different directory and still have valid references to the schemas, as long as the new root path is specified.
      Throws:
      SDKException
    • SchemaBrowser

      public SchemaBrowser(RuleDictionary rd, String srcOutdir, String classOutdir, URI schemaPathRoot, String jaxblib, String parserlib) throws SDKException
      Throws:
      SDKException
    • SchemaBrowser

      public SchemaBrowser(RuleDictionary rd, String srcOutdir, String classOutdir, URI schemaPathRoot, String jaxblib, String parserlib, boolean isDeterministicOrderingOfJaxb) throws SDKException
      Creates a Schema browser that is tied to a RuleDictionary instance.
      Parameters:
      rd - a RuleDictionary that contains a datamodel for loading
      srcOutdir - the directory to generate the JAXB source file into
      classOutdir - the directory to put the compiled JAXB class files in
      schemaPathRoot - the root path for the schemas. If specified, the schema locations will be stored relative to this path, so one can move the entire project a different directory and still have valid references to the schemas, as long as the new root path is specified.
      jaxblib - the JAXB 1.0 library location (null if using JAXB 2.0 or on classpath)
      parserlib - the JAXB 1.0 parser library location (null if using JAXB 2.0 or on classpath)
      Throws:
      SDKException
    • SchemaBrowser

      public SchemaBrowser(RuleDictionary rd, String srcOutdir, String classOutdir) throws SDKException
      Throws:
      SDKException
    • SchemaBrowser

      @Deprecated public SchemaBrowser(RuleDictionary rd, String srcOutdir, String classOutdir, String schemaPathRoot) throws SDKException
      Deprecated.
      Throws:
      SDKException
    • SchemaBrowser

      @Deprecated public SchemaBrowser(RuleDictionary rd, String srcOutdir, String classOutdir, String jaxblib, String parserlib) throws SDKException
      Deprecated.
      Throws:
      SDKException
    • SchemaBrowser

      @Deprecated public SchemaBrowser(RuleDictionary rd, String srcOutdir, String classOutdir, String jaxblib, String parserlib, String schemaPathRoot) throws SDKException
      Deprecated.
      Throws:
      SDKException
  • Method Details

    • addSchemaPath

      public oracle.rules.sdk2.datamodel.impt.JaxbModel addSchemaPath(URI pathToAdd) throws SDKException
      Throws:
      SDKException
    • addSchemaPath

      public oracle.rules.sdk2.datamodel.impt.JaxbModel addSchemaPath(URI pathToAdd, String targetPackage) throws SDKException
      Throws:
      SDKException
    • addSchemaPath

      public oracle.rules.sdk2.datamodel.impt.JaxbModel addSchemaPath(URI pathToAdd, String targetPackage, URI customFile) throws SDKException
      Throws:
      SDKException
    • addSchemaPath

      @Deprecated public oracle.rules.sdk2.datamodel.impt.JaxbModel addSchemaPath(URI pathToAdd, String targetPackage, String customFile) throws SDKException
      Deprecated.
      Parameters:
      pathToAdd -
      targetPackage -
      customFile -
      Returns:
      model representing the added schema (can be discarded)
      Throws:
      SDKException
    • addWSDL

      public oracle.rules.sdk2.datamodel.impt.JaxbModel addWSDL(URI wsdlPath, String targetPackage, URI customUri) throws SDKException
      import WSDL inline schemas
      Parameters:
      wsdlPath - path to a WSDL document
      targetPackage - a String specifying the top level for generated jaxb classes, optional
      customUri - String containing jaxb custom bindings that apply to the schema, optional
      Throws:
      SDKException - - jaxb compiler fails to convert WSDL schemas to jaxb
    • addWSDL

      public void addWSDL(URI wsdlPath, String targetPackage) throws SDKException
      Throws:
      SDKException
    • addWSDL

      @Deprecated public oracle.rules.sdk2.datamodel.impt.JaxbModel addWSDL(URI wsdlPath, String targetPackage, String customFile) throws SDKException
      Deprecated.
      import WSDL inline schemas
      Parameters:
      wsdlPath - path to a WSDL document
      targetPackage - a String specifying the top level for generated jaxb classes, optional
      customFile - String containing jaxb custom bindings that apply to the schema, optional
      Throws:
      SDKException - - jaxb compiler fails to convert WSDL schemas to jaxb
    • setJaxbLib

      public void setJaxbLib(String jaxblib)
      Set the fully-qualified path of the JAXB library to use when compiling JAXB generated classes when using JAXB 1.0. If using the Oracle XDK with JAXB 1.0, this file is named xml.jar.
      Parameters:
      jaxblib - String containing the necessary path to Oracle JAXB library
    • setParserLib

      public void setParserLib(String parserlib)
      Set the fully-qualified path of the XML parser library to use when compiling JAXB generated classes using JAXB 1.0. This is used because some environments do not set a system property or environment variable that indicate the location of the xml parser library. If using the Oracle XDK, this file is named xmlparserv2.jar.
      Parameters:
      parserlib - String containing the necessary path to Oracle XML parser library
    • setSourceOutputDir

      public void setSourceOutputDir(String sod)
      Set the directory to generate the JAXB source file into.
      Parameters:
      sod - the directory to generate the JAXB source file into
    • setClassOutputDir

      public void setClassOutputDir(String cod)
      Set the directory in which to put compiled JAXB class files in
      Parameters:
      cod - the directory
    • setSchemaPathRoot

      public void setSchemaPathRoot(URI spr)
    • setIsCaptureClassNameConflict

      public void setIsCaptureClassNameConflict(boolean flag)
    • setSchemaPathRoot

      @Deprecated public void setSchemaPathRoot(String spr)
      Deprecated.
    • getParserLib

      public String getParserLib()
    • getSourceOutputDir

      public String getSourceOutputDir()
    • getClassOutputDir

      public String getClassOutputDir()
    • getJaxbLib

      public String getJaxbLib()
    • getSchemaPathRoot

      public String getSchemaPathRoot()
    • isCaptureClassNameConflict

      public boolean isCaptureClassNameConflict()
    • clearSchemaPath

      public void clearSchemaPath() throws SDKException
      Remove all user created entries from the schema path list.
      Throws:
      SDKException
    • getSchemaPath

      public List<URI> getSchemaPath()
      Return an array of schema paths (each entry created by a previous addSchemaPath invocation).
      Returns:
      String array of paths to jaxb classes.
    • removeSchemaPath

      public void removeSchemaPath(URI uri) throws SDKException
      Throws:
      SDKException
    • getFailedSchemaAdds

      public List<SchemaBrowser.FailedSchemaAdd> getFailedSchemaAdds()
    • addFailedAdd

      public void addFailedAdd(String pathToAdd, String targetPackage, SDKException ex)