Skip to content

Oracle DB Config support #145

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions components/sbm-recipes-mule-to-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
<source>src/main/xsd/mule/mule-wmq-ee.xsd</source>
<source>src/main/xsd/mule/dw.xsd</source>
<source>src/main/xsd/mule/mule-db.xsd</source>
<source>src/main/xsd/mule/mule-scripting.xsd</source>
</sources>
<noGeneratedHeaderComments>true</noGeneratedHeaderComments>
<laxSchemaValidation>true</laxSchemaValidation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
* &lt;complexType name="globalEndpointType"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{http://www.mulesoft.org/schema/mule/core}globalEndpointType"&gt;
* &lt;attGroup ref="{http://www.mulesoft.org/schema/mule/amqp}addressAttributes"/&gt;
* &lt;attGroup ref="{http://www.mulesoft.org/schema/mule/amqp}propertyAttributes"/&gt;
* &lt;attGroup ref="{http://www.mulesoft.org/schema/mule/amqp}addressAttributes"/&gt;
* &lt;anyAttribute processContents='lax' namespace='##other'/&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
Expand All @@ -32,10 +32,6 @@ public class GlobalEndpointType
extends org.mulesoft.schema.mule.core.GlobalEndpointType
{

@XmlAttribute(name = "exchangeName")
protected String exchangeName;
@XmlAttribute(name = "queueName")
protected String queueName;
@XmlAttribute(name = "routingKey")
protected String routingKey;
@XmlAttribute(name = "consumerTag")
Expand All @@ -52,54 +48,10 @@ public class GlobalEndpointType
protected String queueAutoDelete;
@XmlAttribute(name = "queueExclusive")
protected String queueExclusive;

/**
* Gets the value of the exchangeName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExchangeName() {
return exchangeName;
}

/**
* Sets the value of the exchangeName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExchangeName(String value) {
this.exchangeName = value;
}

/**
* Gets the value of the queueName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQueueName() {
return queueName;
}

/**
* Sets the value of the queueName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setQueueName(String value) {
this.queueName = value;
}
@XmlAttribute(name = "exchangeName")
protected String exchangeName;
@XmlAttribute(name = "queueName")
protected String queueName;

/**
* Gets the value of the routingKey property.
Expand Down Expand Up @@ -293,4 +245,52 @@ public void setQueueExclusive(String value) {
this.queueExclusive = value;
}

/**
* Gets the value of the exchangeName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExchangeName() {
return exchangeName;
}

/**
* Sets the value of the exchangeName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExchangeName(String value) {
this.exchangeName = value;
}

/**
* Gets the value of the queueName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQueueName() {
return queueName;
}

/**
* Sets the value of the queueName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setQueueName(String value) {
this.queueName = value;
}

}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.mulesoft.schema.mule.scripting.ScriptComponentType;


/**
Expand Down Expand Up @@ -37,7 +38,8 @@
@XmlSeeAlso({
DefaultJavaComponentType.class,
StaticComponentType.class,
DefaultComponentType.class
DefaultComponentType.class,
ScriptComponentType.class
})
public class AbstractComponentType
extends AbstractMessageProcessorType
Expand Down Expand Up @@ -68,8 +70,8 @@ public class AbstractComponentType
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link AbstractInterceptorType }{@code >}
* {@link JAXBElement }{@code <}{@link CustomInterceptorType }{@code >}
* {@link JAXBElement }{@code <}{@link AbstractInterceptorType }{@code >}
* {@link JAXBElement }{@code <}{@link CustomInterceptorType }{@code >}
* {@link JAXBElement }{@code <}{@link AbstractInterceptorType }{@code >}
* {@link JAXBElement }{@code <}{@link RefInterceptorStackType }{@code >}
*
Expand Down
Loading