Guest User

Untitled

a guest
Jun 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. /**
  2. * @param username the current username (to be deprecated)
  3. * @return asyncToken, result type is ArrayCollection<workflow.model.operations.Operation>
  4. */
  5. public function getOperationList(username:String):AsyncToken
  6. {
  7. return helper.newResponseDecoder()
  8. .createCollectionOf(Operation)
  9. .from("SOAP")
  10. .on(helper.newSoapInvocation()
  11. .methodNamed("GetOperationList")
  12. .onService(getOperationListService)
  13. .addParameter("username", username)
  14. .invoke());
  15. }
Add Comment
Please, Sign In to add comment