/**
*
*/
public BatchViewBean buildViewBeanBatch(final RequestData requestData, final BatchProcessObject batchProcessObject) throws Exception {
final BatchViewBean batchViewBean = new BatchViewBean();
batchViewBean.setId(batchProcessObject.getId());
batchViewBean.setStatus(batchProcessObject.getStatus());
batchViewBean.setTypeObject(batchProcessObject.getTypeObject().getPropertyKey());
batchViewBean.setProcessedCount(batchProcessObject.getProcessedCount());
return batchViewBean;
}