mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #466 from ruwany/release-2.0.x
Changes to descriptor
This commit is contained in:
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>
|
||||
* <complexType name="jndiConfig">
|
||||
* <complexType name="JndiConfig">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <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…
Reference in New Issue
Block a user