Extending : Pagination extension : Extending technical pagination operation
  
Extending technical pagination operation
This section describes how to extend technical pagination operation.
Technical pagination operation is responsible for handling pagination parameters, such as rows per page, total page number, and etc. UNICOM® Digital Transformation Toolkit (UDTT™) provides default technical pagination operation to handle the parameters. Application may have requirement to handle application specific pagination behavior, so technical developers possibly need to implement a customized technical pagination operation.
1 To customize technical pagination operation, you need to extend class com.ibm.btt.cs.ajax.AbstractPaginationOp. The following diagram shows class hierarchy of technical pagination operation.
This graphic is described in the surrounding text.
2 Secondly the operation needs to override the following methods:
beforeExecutionBizOp
This graphic is described in the surrounding text.
handleBizOpInputMapping
This graphic is described in the surrounding text.
handleBizOpOutputMapping
This graphic is described in the surrounding text.
afterExecuteBizOp
This graphic is described in the surrounding text.
handleException
This graphic is described in the surrounding text.
Go up to
Pagination extension