This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<expression-language> | |
<global-functions file="qrcode_data_to_map.mel" /> | |
</expression-language> | |
</configuration> | |
<mqtt:config name="mqttClient" | |
brokerServerUri="${mqttBrokerServerUri}" | |
clientId="booth-reader-${boothId}"> | |
<reconnect-forever frequency="5000" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scopes": [], | |
"username": "john.doe", | |
"token_expires_in_seconds": 85683, | |
"roles": [ | |
"RESOURCE_OWNER" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<flow name="validateAccessTokenForAuthorizedClientOnly"> | |
<http:inbound-endpoint address="http://localhost:8080/api/oauth2/validate_access_token" /> | |
<oauth2-provider:validate-client /> | |
<oauth2-provider:validate /> | |
<set-variable variableName="token_expires_in_seconds" value="#[flowVars['mule.oauth2.access_token_store_holder'].accessToken.expiresIn.toDuration().standardSeconds]" /> | |
<set-payload value="#[atsh=flowVars['mule.oauth2.access_token_store_holder'];['scopes':atsh.authorizationRequest.?scopes,'roles':atsh.resourceOwnerRoles,'username':atsh.resourceOwnerAuthentication.?principal.username,'token_expires_in_seconds':flowVars['token_expires_in_seconds']]]" /> | |
<json:object-to-json-transformer /> | |
<http:response-builder status="200" contentType="application/json"> | |
<http:cache-control directive="private" | |
noCache="false" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<flow name="publicProfile"> | |
<http:inbound-endpoint address="http://localhost:8080/api/profile/self" /> | |
<oauth2-provider:validate scopes="READ_PROFILE" /> | |
<component class="org.mule.modules.security.examples.oauth2.ProfileLookupComponent" /> | |
</flow> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<oauth2-provider:config | |
providerName="Company B" | |
resourceOwnerSecurityProvider-ref="resourceOwnerSecurityProvider" | |
scopes="READ_PROFILE WRITE_PROFILE" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | |
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" | |
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" | |
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://www.webservicex.net/" | |
xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" | |
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://www.webservicex.net/" | |
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | |
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The E-Payments | |
Routing Directory provides basic routing information for FedACH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<mule xmlns="http://www.mulesoft.org/schema/mule/core" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:pattern="http://www.mulesoft.org/schema/mule/pattern" | |
xmlns:vm="http://www.mulesoft.org/schema/mule/vm" | |
xmlns:http="http://www.mulesoft.org/schema/mule/http" | |
xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" | |
xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml" | |
xmlns:mule-ss="http://www.mulesoft.org/schema/mule/spring-security" | |
xmlns:spring="http://www.springframework.org/schema/beans" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<http:inbound-endpoint | |
address="http://localhost:8080/fed-ach" | |
exchange-pattern="request-response"> | |
<cxf:proxy-service | |
wsdlLocation="classpath:FedACH-Extended.wsdl" | |
namespace="http://www.webservicex.net/" | |
service="FedACH" | |
payload="body"> | |
<cxf:ws-security> | |
<cxf:mule-security-manager /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<flow name="enrichingProxyService"> | |
<http:inbound-endpoint | |
address="http://localhost:8080/fed-ach" | |
exchange-pattern="request-response"> | |
<cxf:proxy-service | |
wsdlLocation="classpath:FedACH-Extended.wsdl" | |
namespace="http://www.webservicex.net/" | |
service="FedACH" | |
payload="body" /> | |
</http:inbound-endpoint> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<wsdl:operation name="getACHByClientId"> | |
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">FedACH | |
participant RDFIs by custom Client ID | |
</wsdl:documentation> | |
<wsdl:input message="tns:getACHByClientIdSoapIn" /> | |
<wsdl:output message="tns:getACHByZipCodeSoapOut" /> | |
</wsdl:operation> |