Skip to content

Commit e5a5a23

Browse files
Add mule db schema and generated JAXB model (#87)
1 parent f518163 commit e5a5a23

File tree

126 files changed

+11721
-5282
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+11721
-5282
lines changed

components/sbm-recipes-mule-to-boot/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
<source>src/main/xsd/mule/mule-http.xsd</source>
127127
<source>src/main/xsd/mule/mule-wmq-ee.xsd</source>
128128
<source>src/main/xsd/mule/dw.xsd</source>
129+
<source>src/main/xsd/mule/mule-db.xsd</source>
129130
</sources>
130131
<noGeneratedHeaderComments>true</noGeneratedHeaderComments>
131132
<laxSchemaValidation>true</laxSchemaValidation>

components/sbm-recipes-mule-to-boot/src/generated/java/org/mulesoft/schema/mule/amqp/InboundEndpointType.java

+53-53
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* &lt;complexType name="inboundEndpointType"&gt;
1717
* &lt;complexContent&gt;
1818
* &lt;extension base="{http://www.mulesoft.org/schema/mule/core}inboundEndpointType"&gt;
19-
* &lt;attGroup ref="{http://www.mulesoft.org/schema/mule/amqp}addressAttributes"/&gt;
2019
* &lt;attGroup ref="{http://www.mulesoft.org/schema/mule/amqp}propertyAttributes"/&gt;
20+
* &lt;attGroup ref="{http://www.mulesoft.org/schema/mule/amqp}addressAttributes"/&gt;
2121
* &lt;anyAttribute processContents='lax' namespace='##other'/&gt;
2222
* &lt;/extension&gt;
2323
* &lt;/complexContent&gt;
@@ -32,10 +32,6 @@ public class InboundEndpointType
3232
extends org.mulesoft.schema.mule.core.InboundEndpointType
3333
{
3434

35-
@XmlAttribute(name = "exchangeName")
36-
protected String exchangeName;
37-
@XmlAttribute(name = "queueName")
38-
protected String queueName;
3935
@XmlAttribute(name = "routingKey")
4036
protected String routingKey;
4137
@XmlAttribute(name = "consumerTag")
@@ -52,54 +48,10 @@ public class InboundEndpointType
5248
protected String queueAutoDelete;
5349
@XmlAttribute(name = "queueExclusive")
5450
protected String queueExclusive;
55-
56-
/**
57-
* Gets the value of the exchangeName property.
58-
*
59-
* @return
60-
* possible object is
61-
* {@link String }
62-
*
63-
*/
64-
public String getExchangeName() {
65-
return exchangeName;
66-
}
67-
68-
/**
69-
* Sets the value of the exchangeName property.
70-
*
71-
* @param value
72-
* allowed object is
73-
* {@link String }
74-
*
75-
*/
76-
public void setExchangeName(String value) {
77-
this.exchangeName = value;
78-
}
79-
80-
/**
81-
* Gets the value of the queueName property.
82-
*
83-
* @return
84-
* possible object is
85-
* {@link String }
86-
*
87-
*/
88-
public String getQueueName() {
89-
return queueName;
90-
}
91-
92-
/**
93-
* Sets the value of the queueName property.
94-
*
95-
* @param value
96-
* allowed object is
97-
* {@link String }
98-
*
99-
*/
100-
public void setQueueName(String value) {
101-
this.queueName = value;
102-
}
51+
@XmlAttribute(name = "exchangeName")
52+
protected String exchangeName;
53+
@XmlAttribute(name = "queueName")
54+
protected String queueName;
10355

10456
/**
10557
* Gets the value of the routingKey property.
@@ -293,4 +245,52 @@ public void setQueueExclusive(String value) {
293245
this.queueExclusive = value;
294246
}
295247

248+
/**
249+
* Gets the value of the exchangeName property.
250+
*
251+
* @return
252+
* possible object is
253+
* {@link String }
254+
*
255+
*/
256+
public String getExchangeName() {
257+
return exchangeName;
258+
}
259+
260+
/**
261+
* Sets the value of the exchangeName property.
262+
*
263+
* @param value
264+
* allowed object is
265+
* {@link String }
266+
*
267+
*/
268+
public void setExchangeName(String value) {
269+
this.exchangeName = value;
270+
}
271+
272+
/**
273+
* Gets the value of the queueName property.
274+
*
275+
* @return
276+
* possible object is
277+
* {@link String }
278+
*
279+
*/
280+
public String getQueueName() {
281+
return queueName;
282+
}
283+
284+
/**
285+
* Sets the value of the queueName property.
286+
*
287+
* @param value
288+
* allowed object is
289+
* {@link String }
290+
*
291+
*/
292+
public void setQueueName(String value) {
293+
this.queueName = value;
294+
}
295+
296296
}

components/sbm-recipes-mule-to-boot/src/generated/java/org/mulesoft/schema/mule/amqp/ReturnHandlerType.java

+285-179
Large diffs are not rendered by default.

components/sbm-recipes-mule-to-boot/src/generated/java/org/mulesoft/schema/mule/core/AbstractComponentType.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11

22
package org.mulesoft.schema.mule.core;
33

4-
import javax.xml.bind.JAXBElement;
5-
import javax.xml.bind.annotation.*;
64
import java.util.ArrayList;
75
import java.util.List;
6+
import javax.xml.bind.JAXBElement;
7+
import javax.xml.bind.annotation.XmlAccessType;
8+
import javax.xml.bind.annotation.XmlAccessorType;
9+
import javax.xml.bind.annotation.XmlElementRef;
10+
import javax.xml.bind.annotation.XmlElementRefs;
11+
import javax.xml.bind.annotation.XmlSeeAlso;
12+
import javax.xml.bind.annotation.XmlType;
813

914

1015
/**

0 commit comments

Comments
 (0)