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

Changes to descriptor
4.x.x
Rasika Perera 8 years ago committed by GitHub
commit 9fa4775ec6

@ -34,8 +34,8 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="jndiConfig" type="{}jndiConfig"/>
* <element name="tableConfig" type="{}tableConfig"/>
* <element name="JndiConfig" type="{}JndiConfig"/>
* <element name="TableConfig" type="{}TableConfig"/>
* </sequence>
* </restriction>
* </complexContent>
@ -51,9 +51,10 @@ import javax.xml.bind.annotation.XmlType;
})
public class DataSource {
@XmlElement(required = true)
@XmlElement(name = "JndiConfig", required = true)
protected JndiConfig jndiConfig;
@XmlElement(required = true)
@XmlElement(name = "TableConfig", required = true)
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.
*
* <pre>
* &lt;complexType name="jndiConfig">
* &lt;complexType name="JndiConfig">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
@ -44,12 +44,12 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "jndiConfig", propOrder = {
@XmlType(name = "JndiConfig", propOrder = {
"name"
})
public class JndiConfig {
@XmlElement(required = true)
@XmlElement(name = "Name", required = true)
protected String name;
/**

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

Loading…
Cancel
Save