Skip to content

Instantly share code, notes, and snippets.

@johndemic
Created October 5, 2012 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johndemic/3841345 to your computer and use it in GitHub Desktop.
Save johndemic/3841345 to your computer and use it in GitHub Desktop.
Deleting an Account with Mule and Cassandra
<flow name="AccountDelete" doc:name="AccountGet">
<http:inbound-endpoint
exchange-pattern="request-response"
host="localhost"
port="8081"
path="account/delete"/>
<cassandradb:remove config-ref="CassandraDB"
columnPath="Accounts:#[message.inboundProperties['http.relative.path'].split('/')[1]]"
rowKey="#[message.inboundProperties['http.relative.path'].split('/')[0]]" doc:name="Cassandradb"/>
<json:object-to-json-transformer />
</flow>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment