Schema | wc-dataload-env.xsd |
Target Namespace | http://www.ibm.com/xmlns/prod/commerce/foundation/config |
Namespace Table | http://www.ibm.com/xmlns/prod/commerce/foundation/config http://www.w3.org/2001/XMLSchema |
include wc-dataload-common.xsd |
DataLoadEnvConfiguration |
Database DataLoadEnvConfiguration DataWriter FilePath IDResolver |
Complex Type Database | ||||||||||||||||||||||||||||||||||||||||||||||
Namespace | http://www.ibm.com/xmlns/prod/commerce/foundation/config | |||||||||||||||||||||||||||||||||||||||||||||
Diagram | ||||||||||||||||||||||||||||||||||||||||||||||
Inheritance Hierarchy | anyType {http://www.w3.org/2001/XMLSchema} Database {http://www.ibm.com/xmlns/prod/commerce/foundation/config} |
|||||||||||||||||||||||||||||||||||||||||||||
Content Details | ||||||||||||||||||||||||||||||||||||||||||||||
Documentation |
Attribute | Type | Required | Default Setting | Description |
type | String | Yes | N/A |
The database type. For example, "derby". Supported values are "derby", "db2" and "oracle". |
name | String | Yes | N/A |
The name of the database the data is being loaded into. |
user | String | No | N/A |
The database user ID. |
password | String | No | N/A |
The database password. The database password can be overridden on the command line. Do not specify the password inside the configuration file unless the password is encrypted. |
server | String | No | N/A |
The name of the server the database is on. |
port | int | No | N/A |
The port to connect to the database. |
driverType | String | No | N/A |
The database driver type. |
schema | String | No | N/A |
The name of the database schema. |
<xsd:complexType name="Database"> <xsd:attribute name="type" type="xsd:string" use="required" form="unqualified"> </xsd:attribute> <xsd:attribute name="name" type="xsd:string" use="required" form="unqualified"> </xsd:attribute> <xsd:attribute name="user" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> <xsd:attribute name="password" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> <xsd:attribute name="server" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> <xsd:attribute name="port" type="xsd:int" use="optional" form="unqualified"> </xsd:attribute> <xsd:attribute name="driverType" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> <xsd:attribute name="schema" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> </xsd:complexType>
Complex Type DataLoadEnvConfiguration | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Namespace | http://www.ibm.com/xmlns/prod/commerce/foundation/config | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Diagram | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Inheritance Hierarchy | anyType {http://www.w3.org/2001/XMLSchema} DataLoadEnvConfiguration {http://www.ibm.com/xmlns/prod/commerce/foundation/config} |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Content Details |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Documentation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Source | <xsd:complexType name="DataLoadEnvConfiguration"> <xsd:sequence> <xsd:element name="FilePath" type="_config:FilePath" minOccurs="0" maxOccurs="1"/> <xsd:element name="BusinessContext" type="_config:BusinessContext" minOccurs="0" maxOccurs="1"> </xsd:element> <xsd:element name="Database" type="_config:Database" minOccurs="1" maxOccurs="1"/> <xsd:element name="IDResolver" type="_config:IDResolver" minOccurs="0" maxOccurs="1"/> <xsd:element name="DataWriter" type="_config:DataWriter" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> |
Complex Type DataWriter | |||||||||||
Namespace | http://www.ibm.com/xmlns/prod/commerce/foundation/config | ||||||||||
Diagram | |||||||||||
Inheritance Hierarchy | anyType {http://www.w3.org/2001/XMLSchema} DataWriter {http://www.ibm.com/xmlns/prod/commerce/foundation/config} |
||||||||||
Content Details |
|
||||||||||
Documentation |
Attribute | Type | Required | Default Setting | Description |
className | String | Yes | N/A |
The data writer implementation class
|
<xsd:complexType name="DataWriter"> <xsd:sequence> <xsd:element name="property" type="_config:NameValuePair" minOccurs="0" maxOccurs="unbounded"> </xsd:element> </xsd:sequence> <xsd:attribute name="className" type="xsd:string" use="required" form="unqualified"> </xsd:attribute> </xsd:complexType>
Complex Type FilePath | |||||||||||||||||||||
Namespace | http://www.ibm.com/xmlns/prod/commerce/foundation/config | ||||||||||||||||||||
Diagram | |||||||||||||||||||||
Inheritance Hierarchy | anyType {http://www.w3.org/2001/XMLSchema} FilePath {http://www.ibm.com/xmlns/prod/commerce/foundation/config} |
||||||||||||||||||||
Content Details | |||||||||||||||||||||
Documentation |
Attribute | Type | Required | Default Setting | Description |
boConfigFilePath | String | No | N/A |
The file path for the set of business object configuration files used during the data load process. This path is prepended to the business object configuration file names specifed in the load order file. |
dataInputFilePath | String | No | N/A |
The file path for the set of data input files used during the data load process. This path is prepended to the data reader input data file names specifed in the load order file. |
dataOutputFilePath | String | No | N/A |
The file path for the set of data output files generated during the data load process. This path is used by the native load data writer. It can be used with custom data writers. |
<xsd:complexType name="FilePath"> <xsd:attribute name="boConfigFilePath" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> <xsd:attribute name="dataInputFilePath" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> <xsd:attribute name="dataOutputFilePath" type="xsd:string" use="optional" form="unqualified"> </xsd:attribute> </xsd:complexType>
Complex Type IDResolver | ||||||||||||||||
Namespace | http://www.ibm.com/xmlns/prod/commerce/foundation/config | |||||||||||||||
Diagram | ||||||||||||||||
Inheritance Hierarchy | anyType {http://www.w3.org/2001/XMLSchema} IDResolver {http://www.ibm.com/xmlns/prod/commerce/foundation/config} |
|||||||||||||||
Content Details |
|
|||||||||||||||
Documentation |
Attribute | Type | Required | Default Setting | Description |
className | String | Yes | com.ibm.commerce.foundation.dataload.idresolve.IDResolverImpl |
The implementation class of the ID Resolver to use.
|
cacheSize | nonNegativeInteger | No | 0 |
The cache size for the ID Resolver. |
<xsd:complexType name="IDResolver"> <xsd:sequence> <xsd:element name="property" type="_config:NameValuePair" minOccurs="0" maxOccurs="unbounded"> </xsd:element> </xsd:sequence> <xsd:attribute name="className" type="xsd:string" use="required" form="unqualified"> </xsd:attribute> <xsd:attribute name="cacheSize" type="xsd:nonNegativeInteger" use="optional" form="unqualified"> </xsd:attribute> </xsd:complexType>
Element DataLoadEnvConfiguration | |
Namespace | http://www.ibm.com/xmlns/prod/commerce/foundation/config |
Diagram | |
Type | DataLoadEnvConfiguration {http://www.ibm.com/xmlns/prod/commerce/foundation/config} |
Documentation | |
Source | <xsd:element name="DataLoadEnvConfiguration" type="_config:DataLoadEnvConfiguration"> </xsd:element> |