abirama62

getAuthorizedEmbeddedOutletListAdvance

May 18th, 2020
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.67 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.  
  5.     <!--BF getAuthorizedEmbeddedOutletListAdvance-->
  6.     <service name="getAuthorizedEmbeddedOutletListAdvance" bean="" output="outputDto">
  7.         <informations>
  8.             <description>Get Embedded Outlet List Advance</description>
  9.             <info-in>
  10.                 <info name="result.header.userLoginId" type="Long" description="User login id"/>
  11.                 <info name="result.header.tenantLoginId" type="Long" description="Tenant login id"/>
  12.                 <info name="result.header.roleLoginId" type="Long" description="Role login id"/>
  13.                 <info name="result.header.datetime" type="String" description="Datetime"/>
  14.                 <info name="result.header.taskName" type="String" description="Task name"/>
  15.  
  16.                 <!--<info name="result.payload.ouId" type="String" description="code"/>-->
  17.                 <info name="result.payload.active" type="String" description="active"/>
  18.             </info-in>
  19.             <info-out>
  20.                 <info name="result.outletList" type="List" description="list of ou ()" />
  21.             </info-out>
  22.         </informations>
  23.  
  24.         <mod-dto output="inputDto">
  25.             <key name="tenantId" type="Long" from="${result.header.tenantLoginId}"/>
  26.             <key name="userLoginId" type="Long" from="${result.header.userLoginId}"/>
  27.             <key name="roleLoginId" type="Long" from="${result.header.roleLoginId}"/>
  28.             <!--<key name="ouId" type="String" from="${result.payload.code}"/>-->
  29.             <key name="active" type="String" from="${result.payload.active}"/>
  30.         </mod-dto>
  31.  
  32.         <call-bf name="getAuthorizedEmbeddedOutletListAdvance" input="${inputDto}" output="outputDto">
  33.             <onsuccess />
  34.             <onerror />
  35.         </call-bf>
  36.     </service>
  37. </services-flow>
Add Comment
Please, Sign In to add comment