-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal_configs.xml
20 lines (19 loc) · 1.58 KB
/
global_configs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:secure-property-placeholder="http://www.mulesoft.org/schema/mule/secure-property-placeholder" xmlns:sfdc="http://www.mulesoft.org/schema/mule/sfdc" xmlns:db="http://www.mulesoft.org/schema/mule/db" xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.5.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.mulesoft.org/schema/mule/db http://www.mulesoft.org/schema/mule/db/current/mule-db.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/secure-property-placeholder http://www.mulesoft.org/schema/mule/secure-property-placeholder/current/mule-secure-property-placeholder.xsd
http://www.mulesoft.org/schema/mule/sfdc http://www.mulesoft.org/schema/mule/sfdc/current/mule-sfdc.xsd">
<secure-property-placeholder:config
name="Secure_Property_Placeholder" key="${aes.key}" location="credentials.properties"
doc:name="Secure Property Placeholder" />
<sfdc:config name="Salesforce" username="${sfdc.user}"
password="${sfdc.password}" securityToken="${sfdc.token}" doc:name="Salesforce" />
<db:mysql-config name="MySQL_Configuration" host="${mysql.host}"
port="${mysql.port}" user="${mysql.user}" password="${mysql.password}"
database="studio" doc:name="MySQL Configuration" />
</mule>