|
|
@ -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;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|