summaryrefslogtreecommitdiffstats
path: root/das-java/branches/das-java-beta1/rdb/src/main/resources/config.xsd
blob: 4fb3399310ce718ec39871ac6ce574da75a07e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
 -->
<xsd:schema
   xmlns:config="http:///org.apache.tuscany.das.rdb/config.xsd"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   targetNamespace="http:///org.apache.tuscany.das.rdb/config.xsd"
   elementFormDefault="qualified">

   <xsd:element name="Config" type="config:Config"/> 

   <xsd:complexType name="Config">
      <xsd:sequence>
         <xsd:element  maxOccurs="unbounded" minOccurs="0" name="Command"
            type="config:Command"/>
         <xsd:element  maxOccurs="unbounded" minOccurs="0" name="Table" type="config:Table"/>
         <xsd:element  maxOccurs="unbounded" minOccurs="0" name="Relationship"
            type="config:Relationship"/>
         <xsd:element  maxOccurs="1" minOccurs="0" name="ConnectionInfo"
            type="config:ConnectionInfo"/>
      </xsd:sequence>
      <xsd:attribute name="uri" type="xsd:string"/>
      <xsd:attribute name="dataObjectModel" type="xsd:string"/>
      <xsd:attribute name="databaseSchemaNameSupported" type="xsd:boolean" default="false"/>      
   </xsd:complexType>

   <xsd:complexType name="ConnectionProperties">
      <xsd:attribute name="driverClass" type="xsd:string"/>
      <xsd:attribute name="databaseURL" type="xsd:string"/>
      <xsd:attribute name="userName" type="xsd:string" default=""/>
      <xsd:attribute name="password" type="xsd:string" default=""/>
      <xsd:attribute name="loginTimeout" type="xsd:int" default="0"/>      
   </xsd:complexType>
   
   <xsd:complexType name="ConnectionInfo">
      <xsd:sequence>
        <xsd:element  maxOccurs="1" minOccurs="0" name="ConnectionProperties" type="config:ConnectionProperties"/>
      </xsd:sequence>
      <xsd:attribute name="dataSource" type="xsd:string"/>
      <xsd:attribute name="managedtx" type="xsd:boolean" default="true"/>
   </xsd:complexType>
   
   
   <xsd:complexType name="Command">
      <xsd:sequence>
         <xsd:element  maxOccurs="unbounded" minOccurs="0" name="Parameter"
            type="config:Parameter"/>
         <xsd:element  maxOccurs="unbounded" minOccurs="0" name="ResultDescriptor"
            type="config:ResultDescriptor"/>
      </xsd:sequence>
      <xsd:attribute name="name" type="xsd:string"/>
      <xsd:attribute name="SQL" type="xsd:string"/>
      <xsd:attribute name="kind" type="xsd:string"/>
   </xsd:complexType>
   <xsd:complexType name="Parameter">     
      <xsd:attribute name="columnType" type="xsd:string"/>
      <xsd:attribute name="direction" type="xsd:string"/>
      <xsd:attribute name="index" type="xsd:int"/>
   </xsd:complexType>
   <xsd:complexType name="Relationship">
      <xsd:sequence>
         <xsd:element  maxOccurs="unbounded" minOccurs="0" name="KeyPair"
            type="config:KeyPair"/>
      </xsd:sequence>
      <xsd:attribute name="name" type="xsd:string"/>
      <xsd:attribute name="primaryKeyTable" type="xsd:string"/>
      <xsd:attribute name="foreignKeyTable" type="xsd:string"/>
      <xsd:attribute name="many" type="xsd:boolean"/>
      <xsd:attribute name="keyRestricted" type="xsd:boolean"/>
   </xsd:complexType>
   <xsd:complexType name="Table">
      <xsd:sequence>
         <xsd:element  maxOccurs="unbounded" minOccurs="0" name="Column"
            type="config:Column"/>
         <xsd:element  maxOccurs="1" minOccurs="0" name="create" type="config:Create"/>
         <xsd:element  maxOccurs="1" minOccurs="0" name="update" type="config:Update"/>
         <xsd:element maxOccurs="1" minOccurs="0" name="delete" type="config:Delete"/>
      </xsd:sequence>
      <xsd:attribute name="tableName" type="xsd:string"/>
      <xsd:attribute name="typeName" type="xsd:string"/>      
      <xsd:attribute name="schemaName" type="xsd:string" default=""/> 
   </xsd:complexType>
   <xsd:complexType name="Create">
   	  <xsd:attribute name="sql" type="xsd:string"/>
   	  <xsd:attribute name="parameters" type="xsd:string"/>
   </xsd:complexType>
    <xsd:complexType name="Update">
   	  <xsd:attribute name="sql" type="xsd:string"/>
   	  <xsd:attribute name="parameters" type="xsd:string"/>
   </xsd:complexType>
    <xsd:complexType name="Delete">
   	  <xsd:attribute name="sql" type="xsd:string"/>
   	  <xsd:attribute name="parameters" type="xsd:string"/>
   </xsd:complexType>
   <xsd:complexType name="KeyPair">
      <xsd:attribute name="primaryKeyColumn" type="xsd:string"/>
      <xsd:attribute name="foreignKeyColumn" type="xsd:string"/>
   </xsd:complexType>
   <xsd:complexType name="Column">
      <xsd:attribute name="columnName" type="xsd:string"/>
      <xsd:attribute name="propertyName" type="xsd:string"/>
      <xsd:attribute name="converterClassName" type="xsd:string"/>
      <xsd:attribute name="primaryKey" type="xsd:boolean"/>
      <xsd:attribute name="generated" type="xsd:boolean"/>
      <xsd:attribute name="collision" type="xsd:boolean"/>
      <xsd:attribute name="managed" type="xsd:boolean" default="true"/>
   </xsd:complexType>
   <xsd:complexType name="ResultDescriptor">
      <xsd:attribute name="columnName" type="xsd:string"/>
      <xsd:attribute name="tableName" type="xsd:string"/>
      <xsd:attribute name="schemaName" type="xsd:string"/>      
      <xsd:attribute name="columnType" type="xsd:string"/>
   </xsd:complexType>

</xsd:schema>