Package oracle.rules.sdk2.datamodel
Class SchemaBrowser
java.lang.Object
oracle.rules.sdk2.datamodel.Browser
oracle.rules.sdk2.datamodel.SchemaBrowser
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.
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.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSchemaBrowser
(RuleDictionary rd, String srcOutdir, String classOutdir) SchemaBrowser
(RuleDictionary rd, String srcOutdir, String classOutdir, String schemaPathRoot) Deprecated.SchemaBrowser
(RuleDictionary rd, String srcOutdir, String classOutdir, String jaxblib, String parserlib) Deprecated.SchemaBrowser
(RuleDictionary rd, String srcOutdir, String classOutdir, String jaxblib, String parserlib, String schemaPathRoot) Deprecated.SchemaBrowser
(RuleDictionary rd, String srcOutdir, String classOutdir, URI schemaPathRoot) Creates a Schema browser that is tied to a RuleDictionary instance.SchemaBrowser
(RuleDictionary rd, String srcOutdir, String classOutdir, URI schemaPathRoot, String jaxblib, String parserlib) SchemaBrowser
(RuleDictionary rd, String srcOutdir, String classOutdir, URI schemaPathRoot, String jaxblib, String parserlib, boolean isDeterministicOrderingOfJaxb) Creates a Schema browser that is tied to a RuleDictionary instance. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addFailedAdd
(String pathToAdd, String targetPackage, SDKException ex) oracle.rules.sdk2.datamodel.impt.JaxbModel
addSchemaPath
(URI pathToAdd) oracle.rules.sdk2.datamodel.impt.JaxbModel
addSchemaPath
(URI pathToAdd, String targetPackage) oracle.rules.sdk2.datamodel.impt.JaxbModel
addSchemaPath
(URI pathToAdd, String targetPackage, String customFile) Deprecated.oracle.rules.sdk2.datamodel.impt.JaxbModel
addSchemaPath
(URI pathToAdd, String targetPackage, URI customFile) void
oracle.rules.sdk2.datamodel.impt.JaxbModel
Deprecated.oracle.rules.sdk2.datamodel.impt.JaxbModel
import WSDL inline schemasvoid
Remove all user created entries from the schema path list.Return an array of schema paths (each entry created by a previous addSchemaPath invocation).boolean
void
removeSchemaPath
(URI uri) void
setClassOutputDir
(String cod) Set the directory in which to put compiled JAXB class files invoid
setIsCaptureClassNameConflict
(boolean flag) 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.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.void
setSchemaPathRoot
(String spr) Deprecated.void
setSchemaPathRoot
(URI spr) void
setSourceOutputDir
(String sod) Set the directory to generate the JAXB source file into.Methods inherited from class oracle.rules.sdk2.datamodel.Browser
getDictionary, getNodeTable
-
Field Details
-
BASE_RULE
- See Also:
-
TASK_STATE
- See Also:
-
ROUTE_SLIP
- See Also:
-
WORKFLOW_TASK
- See Also:
-
-
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 loadingsrcOutdir
- the directory to generate the JAXB source file intoclassOutdir
- the directory to put the compiled JAXB class files inschemaPathRoot
- 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 loadingsrcOutdir
- the directory to generate the JAXB source file intoclassOutdir
- the directory to put the compiled JAXB class files inschemaPathRoot
- 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
- 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
- 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 documenttargetPackage
- a String specifying the top level for generated jaxb classes, optionalcustomUri
- String containing jaxb custom bindings that apply to the schema, optional- Throws:
SDKException
- - jaxb compiler fails to convert WSDL schemas to jaxb
-
addWSDL
- 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 documenttargetPackage
- a String specifying the top level for generated jaxb classes, optionalcustomFile
- String containing jaxb custom bindings that apply to the schema, optional- Throws:
SDKException
- - jaxb compiler fails to convert WSDL schemas to jaxb
-
setJaxbLib
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
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
Set the directory to generate the JAXB source file into.- Parameters:
sod
- the directory to generate the JAXB source file into
-
setClassOutputDir
Set the directory in which to put compiled JAXB class files in- Parameters:
cod
- the directory
-
setSchemaPathRoot
-
setIsCaptureClassNameConflict
public void setIsCaptureClassNameConflict(boolean flag) -
setSchemaPathRoot
Deprecated. -
getParserLib
-
getSourceOutputDir
-
getClassOutputDir
-
getJaxbLib
-
getSchemaPathRoot
-
isCaptureClassNameConflict
public boolean isCaptureClassNameConflict() -
clearSchemaPath
Remove all user created entries from the schema path list.- Throws:
SDKException
-
getSchemaPath
Return an array of schema paths (each entry created by a previous addSchemaPath invocation).- Returns:
- String array of paths to jaxb classes.
-
removeSchemaPath
- Throws:
SDKException
-
getFailedSchemaAdds
-
addFailedAdd
-