[jboss-svn-commits] JBL Code SVN: r16144 - labs/jbossesb/trunk/product/etc/schemas/xml.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Mon Oct 29 15:01:51 EDT 2007
Author: tcunning
Date: 2007-10-29 15:01:51 -0400 (Mon, 29 Oct 2007)
New Revision: 16144
Modified:
labs/jbossesb/trunk/product/etc/schemas/xml/jbossesb-1.0.1.xsd
Log:
bug:JBESB-1264
Adding datasource support to sql-provider
Modified: labs/jbossesb/trunk/product/etc/schemas/xml/jbossesb-1.0.1.xsd
===================================================================
--- labs/jbossesb/trunk/product/etc/schemas/xml/jbossesb-1.0.1.xsd 2007-10-29 19:00:38 UTC (rev 16143)
+++ labs/jbossesb/trunk/product/etc/schemas/xml/jbossesb-1.0.1.xsd 2007-10-29 19:01:51 UTC (rev 16144)
@@ -910,17 +910,22 @@
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="jesb:bus-provider">
- <xsd:attribute name="url" type="xsd:string" use="required">
+ <xsd:attribute name="datasource" type="xsd:string" use="optional">
+ <xsd:annotation>
+ <xsd:documentation xml:lang="en">The name of the datasource.</xsd:documentation>
+ </xsd:annotation>
+ </xsd:attribute>
+ <xsd:attribute name="url" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">The url needed to connect to the db.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
- <xsd:attribute name="driver" type="xsd:string" use="required">
+ <xsd:attribute name="driver" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">The driver needed to connect to the db.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
- <xsd:attribute name="username" type="xsd:string" use="required">
+ <xsd:attribute name="username" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">The username used to access the database.
</xsd:documentation>
More information about the jboss-svn-commits
mailing list