This file contains 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
qqqq |
This file contains 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
<activiti:connector name="actServer" | |
activitiServerURL="http://localhost:8080/activiti-rest/service/" | |
username="kermit" password="kermit" /> | |
<model> | |
<service name="Activiti service"> | |
<inbound> | |
<activiti:inbound-endpoint activiti-server="actServer"> | |
<activiti:list-candidate-tasks user="kermit" /> | |
</activiti:inbound-endpoint> |
This file contains 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
<activiti:connector | |
name="actServer" | |
activitiServerURL="http://localhost:8080/activiti-rest/service/" | |
username="kermit" | |
password="kermit" /> |
This file contains 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
<activiti:inbound-endpoint activiti-server="actServer"> | |
<activiti:list-candidate-tasks user="pablo" /> | |
</activiti:inbound-endpoint> |
This file contains 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
<activiti:outbound-endpoint activiti-server="actServer" > | |
<activiti:perform-task-operation operation="CLAIM" /> | |
</activiti:outbound-endpoint> |
This file contains 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.mulesource.org/schema/mule/core/2.2" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:file="http://www.mulesource.org/schema/mule/file/2.2" | |
xmlns:pgp="http://www.mulesource.org/schema/mule/pgp/2.2" | |
xmlns:vm="http://www.mulesource.org/schema/mule/vm/2.2" | |
xmlns:spring="http://www.springframework.org/schema/beans" | |
xsi:schemaLocation=" | |
http://www.springframework.org/schema/beans |
This file contains 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="receiveRequests"> | |
<http:inbound-endpoint | |
address="http://localhost:9090/picture-request/services/receiveRequest" | |
exchange-pattern="request-response"> | |
<response> | |
<script:transformer> | |
<script:script engine="groovy"> | |
return "Success" | |
</script:script> | |
</script:transformer> |
This file contains 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"?> | |
<definitions | |
id="definitions" | |
targetNamespace="http://activiti.org/bpmn20" | |
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:activiti="http://activiti.org/bpmn"> | |
<process | |
id="pictureRequest" |
This file contains 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
<h1>Picture Approval</h1> | |
<p> | |
The user: <b>${user}</b> wants the high | |
definition version of the image <b>${imageName}</b>. | |
</p> |
This file contains 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"?> | |
<definitions id="definitions" | |
targetNamespace="http://activiti.org/bpmn20" | |
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:activiti="http://activiti.org/bpmn"> | |
<process id="pictureRequest" name="A process that handles picture requests by users"> | |
<startEvent id="theStart" /> |
OlderNewer