Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- GetVehicleList -->
- <service name="getVehicleList" bean="" output="outputDto">
- <informations>
- <description>Get vehicle list</description>
- <info-in>
- <info name="result.header.userLoginId" type="Long" description="User login id"/>
- <info name="result.header.userLoginName" type="String" description="User login name"/>
- <info name="result.header.roleLoginId" type="Long" description="Role login id"/>
- <info name="result.header.roleLoginName" type="String" description="Role login name"/>
- <info name="result.header.datetime" type="String" description="Date time"/>
- <info name="result.payload.keyword" type="String" description="keyword"/>
- <info name="result.payload.active" type="String" description="active"/>
- <info name="result.payload.limit" type="Long" description="limit"/>
- <info name="result.payload.offset" type="Long" description="offset"/>
- </info-in>
- <info-out>
- <info name="result.vehicleList" type="List" description="vehicle list ( vehicleCode, licenseNo, ownerName, chassisNo, engineNo, vehicleGroupCode,vehicleGroupName, vehicleTypeCode, vehicleTypeName, yearMade, customerName, address1, address2, address3, phone1, phone2, active, version )"/>
- </info-out>
- </informations>
- <mod-dto output="inputDto">
- <key name="keyword" type="String" from="${result.payload.keyword}"/>
- <key name="active" type="String" from="${result.payload.active}"/>
- <key name="limit" type="Long" from="${result.payload.limit}"/>
- <key name="offset" type="Long" from="${result.payload.offset}"/>
- </mod-dto>
- <call-bf name="getVehicleList" input="${inputDto}" output="outputDto">
- <onsuccess />
- <onerror />
- </call-bf>
- </service>
Advertisement
Add Comment
Please, Sign In to add comment