Author: ruwan
Date: Fri Oct 29 13:45:39 2010
New Revision: 1028740

URL: http://svn.apache.org/viewvc?rev=1028740&view=rev
Log:
Adding dblookup and dbreport mediator schemas

Added:
    synapse/trunk/java/repository/schema/mediators/advanced/db_lookup.xsd
Modified:
    synapse/trunk/java/repository/schema/mediators/mediators.xsd

Added: synapse/trunk/java/repository/schema/mediators/advanced/db_lookup.xsd
URL: 
http://svn.apache.org/viewvc/synapse/trunk/java/repository/schema/mediators/advanced/db_lookup.xsd?rev=1028740&view=auto
==============================================================================
--- synapse/trunk/java/repository/schema/mediators/advanced/db_lookup.xsd 
(added)
+++ synapse/trunk/java/repository/schema/mediators/advanced/db_lookup.xsd Fri 
Oct 29 13:45:39 2010
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~  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.
+  -->
+
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
elementFormDefault="qualified"
+           targetNamespace="http://synapse.apache.org/ns/2010/04/configuration";
+           xmlns="http://synapse.apache.org/ns/2010/04/configuration";>
+
+    <xs:element name="dblookup" type="db-mediator">
+        <xs:annotation>
+            <xs:documentation source="description">
+                DBLookup mediator to lookup content from a DB and enrich the 
message
+            </xs:documentation>
+        </xs:annotation>
+    </xs:element>
+
+    <xs:element name="dbreport" type="db-mediator">
+        <xs:annotation>
+            <xs:documentation source="description">
+                DBReport mediator to report content from a message to a 
database
+            </xs:documentation>
+        </xs:annotation>
+    </xs:element>
+
+    <xs:complexType name="db-mediator">
+        <xs:all>
+            <xs:element name="connection" minOccurs="1" maxOccurs="1">
+                <xs:complexType>
+                    <xs:all>
+                        <xs:element name="pool" minOccurs="1" maxOccurs="1">
+                            <xs:complexType>
+                                <xs:choice maxOccurs="1" minOccurs="1">
+                                    <xs:group ref="defined-db-connection"/>
+                                    <xs:element name="dsName" 
type="xs:string"/>
+                                </xs:choice>
+                            </xs:complexType>
+                        </xs:element>
+                    </xs:all>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="statement" minOccurs="1" maxOccurs="1">
+                <xs:complexType>
+                    <xs:all>
+                        <xs:element name="sql" minOccurs="1" maxOccurs="1" 
type="xs:string"/>
+                        <xs:element name="parameter" minOccurs="0" 
maxOccurs="1">
+                            <xs:complexType>
+                                <xs:attribute name="expression" 
type="xs:string" use="required"/>
+                                <xs:attribute name="type" type="xs:string" 
use="required"/>
+                            </xs:complexType>
+                        </xs:element>
+                        <xs:element name="result" minOccurs="0" maxOccurs="1">
+                            <xs:complexType>
+                                <xs:attribute name="name" type="xs:string" 
use="required"/>
+                                <xs:attribute name="column" type="xs:string" 
use="required"/>
+                            </xs:complexType>
+                        </xs:element>
+                    </xs:all>
+                </xs:complexType>
+            </xs:element>
+        </xs:all>
+    </xs:complexType>
+    
+    <xs:group name="defined-db-connection">
+        <xs:all>
+            <xs:element name="driver" minOccurs="1" maxOccurs="1" 
type="xs:string"/>
+            <xs:element name="url" minOccurs="1" maxOccurs="1" 
type="xs:string"/>
+            <xs:element name="user" minOccurs="1" maxOccurs="1" 
type="xs:string"/>
+            <xs:element name="password" minOccurs="1" maxOccurs="1" 
type="xs:string"/>
+        </xs:all>
+    </xs:group>
+
+</xs:schema>
\ No newline at end of file

Modified: synapse/trunk/java/repository/schema/mediators/mediators.xsd
URL: 
http://svn.apache.org/viewvc/synapse/trunk/java/repository/schema/mediators/mediators.xsd?rev=1028740&r1=1028739&r2=1028740&view=diff
==============================================================================
--- synapse/trunk/java/repository/schema/mediators/mediators.xsd (original)
+++ synapse/trunk/java/repository/schema/mediators/mediators.xsd Fri Oct 29 
13:45:39 2010
@@ -35,6 +35,7 @@
     <xs:include schemaLocation="transformation/fault.xsd"/>
     <xs:include schemaLocation="transformation/xslt.xsd"/>
     <xs:include schemaLocation="advanced/rm_sequence.xsd"/>
+    <xs:include schemaLocation="advanced/db_lookup.xsd"/>
     <xs:include schemaLocation="extension/script.xsd"/>
 
     <xs:group name="mediatorList">
@@ -68,6 +69,8 @@
             <xs:element ref="makefault"/>
             <xs:element ref="script"/>
             <xs:element ref="xslt"/>
+            <xs:element ref="dblookup"/>
+            <xs:element ref="dbreport"/>
         </xs:choice>
     </xs:group>
 


Reply via email to