Merge pull request #466 from ruwany/release-2.0.x

Changes to descriptor
revert-70aa11f8
Rasika Perera 8 years ago committed by GitHub
commit 9fa4775ec6

@ -34,8 +34,8 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent> * <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence> * <sequence>
* <element name="jndiConfig" type="{}jndiConfig"/> * <element name="JndiConfig" type="{}JndiConfig"/>
* <element name="tableConfig" type="{}tableConfig"/> * <element name="TableConfig" type="{}TableConfig"/>
* </sequence> * </sequence>
* </restriction> * </restriction>
* </complexContent> * </complexContent>
@ -51,9 +51,10 @@ import javax.xml.bind.annotation.XmlType;
}) })
public class DataSource { public class DataSource {
@XmlElement(required = true) @XmlElement(name = "JndiConfig", required = true)
protected JndiConfig jndiConfig; protected JndiConfig jndiConfig;
@XmlElement(required = true)
@XmlElement(name = "TableConfig", required = true)
protected TableConfig tableConfig; protected TableConfig tableConfig;
/** /**

@ -30,7 +30,7 @@ import javax.xml.bind.annotation.XmlType;
* <p>The following schema fragment specifies the expected content contained within this class. * <p>The following schema fragment specifies the expected content contained within this class.
* *
* <pre> * <pre>
* &lt;complexType name="jndiConfig"> * &lt;complexType name="JndiConfig">
* &lt;complexContent> * &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence> * &lt;sequence>
@ -44,12 +44,12 @@ import javax.xml.bind.annotation.XmlType;
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "jndiConfig", propOrder = { @XmlType(name = "JndiConfig", propOrder = {
"name" "name"
}) })
public class JndiConfig { public class JndiConfig {
@XmlElement(required = true) @XmlElement(name = "Name", required = true)
protected String name; protected String name;
/** /**

@ -46,7 +46,7 @@ import javax.xml.bind.annotation.XmlType;
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tableConfig", propOrder = { @XmlType(name = "TableConfig", propOrder = {
"table" "table"
}) })
public class TableConfig { public class TableConfig {

Loading…
Cancel
Save