Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <services-flow xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3. xmlns="http://www.jleaf.org/jleaf/service-flow"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.jleaf.org/jleaf/service-flow https://dl.dropboxusercontent.com/u/29909381/service-flow-scheme-jleaf.xsd">
  6.  
  7. <!-- call GetGroupBrandListForCombo -->
  8. <service name="getGroupBrandListForCombo" bean="" output="outputDto">
  9. <informations>
  10. <description>Get Group Brand List For Combo</description>
  11. <info-in>
  12. <info name="result.header.userLoginId" type="Long" description="User login id" />
  13. <info name="result.header.roleLoginId" type="Long" description="Role login id" />
  14. <info name="result.header.tenantLoginId" type="Long" description="Tenant login id" />
  15. <info name="result.header.datetime" type="String" description="Datetime" />
  16.  
  17. <info name="result.payload.keyword" type="String" description="keyword" />
  18. <info name="result.payload.active" type="String" description="active" />
  19. </info-in>
  20. <info-out>
  21. <info name="result.groupBrandList" type="List" description="list of Group Brand (id, groupBrandCode, groupBrandName, parentGroupBrand, flgGenuine)" />
  22. </info-out>
  23. </informations>
  24.  
  25. <!-- create dto for input BF -->
  26. <mod-dto output="inputDto">
  27. <key name="userLoginId" type="Long" from="${result.header.userLoginId}"/>
  28. <key name="roleLoginId" type="Long" from="${result.header.roleLoginId}"/>
  29. <key name="tenantLoginId" type="Long" from="${result.header.tenantLoginId}"/>
  30. <key name="datetime" type="String" from="${result.header.datetime}"/>
  31.  
  32. <key name="keyword" type="String" from="${result.payload.keyword}"/>
  33. <key name="active" type="String" from="${result.payload.active}"/>
  34. </mod-dto>
  35.  
  36. <call-bf name="getGroupBrandListForCombo" input="${inputDto}" output="outputDto">
  37. <onsuccess />
  38. <onerror />
  39. </call-bf>
  40. </service>
  41.  
  42. </services-flow>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement