* Private Methods
****/
private BlockInstanceBean getBlockInstanceAsBean(BlockInstance blockInstance) {
BlockInstanceBean bean = new BlockInstanceBean();
BlockConfigurationBean blockConfig = getBlockConfigurationAsBean(blockInstance.getBlock());
bean.setBlockId(blockConfig.getBlockId());
bean.setBlockConfiguration(blockConfig);
long serviceDate = blockInstance.getServiceDate();
bean.setServiceDate(serviceDate);
return bean;
}