Skip to content

Commit e59dd6e

Browse files
Oracle DB Config support (#145)
1 parent c59554c commit e59dd6e

File tree

122 files changed

+6479
-4936
lines changed

Some content is hidden

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

122 files changed

+6479
-4936
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
<source>src/main/xsd/mule/mule-wmq-ee.xsd</source>
136136
<source>src/main/xsd/mule/dw.xsd</source>
137137
<source>src/main/xsd/mule/mule-db.xsd</source>
138+
<source>src/main/xsd/mule/mule-scripting.xsd</source>
138139
</sources>
139140
<noGeneratedHeaderComments>true</noGeneratedHeaderComments>
140141
<laxSchemaValidation>true</laxSchemaValidation>

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

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* &lt;complexType name="globalEndpointType"&gt;
1717
* &lt;complexContent&gt;
1818
* &lt;extension base="{http://www.mulesoft.org/schema/mule/core}globalEndpointType"&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 GlobalEndpointType
3232
extends org.mulesoft.schema.mule.core.GlobalEndpointType
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 GlobalEndpointType
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

Lines changed: 193 additions & 184 deletions
Large diffs are not rendered by default.

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import javax.xml.bind.annotation.XmlElementRefs;
1111
import javax.xml.bind.annotation.XmlSeeAlso;
1212
import javax.xml.bind.annotation.XmlType;
13+
import org.mulesoft.schema.mule.scripting.ScriptComponentType;
1314

1415

1516
/**
@@ -37,7 +38,8 @@
3738
@XmlSeeAlso({
3839
DefaultJavaComponentType.class,
3940
StaticComponentType.class,
40-
DefaultComponentType.class
41+
DefaultComponentType.class,
42+
ScriptComponentType.class
4143
})
4244
public class AbstractComponentType
4345
extends AbstractMessageProcessorType
@@ -68,8 +70,8 @@ public class AbstractComponentType
6870
* <p>
6971
* Objects of the following type(s) are allowed in the list
7072
* {@link JAXBElement }{@code <}{@link AbstractInterceptorType }{@code >}
71-
* {@link JAXBElement }{@code <}{@link CustomInterceptorType }{@code >}
7273
* {@link JAXBElement }{@code <}{@link AbstractInterceptorType }{@code >}
74+
* {@link JAXBElement }{@code <}{@link CustomInterceptorType }{@code >}
7375
* {@link JAXBElement }{@code <}{@link AbstractInterceptorType }{@code >}
7476
* {@link JAXBElement }{@code <}{@link RefInterceptorStackType }{@code >}
7577
*

0 commit comments

Comments
 (0)