*/
public Dashboard updateDashboard(final DashboardBean boardBean) throws EnMeNoResultsFoundException{
final Dashboard board = this.getDashboardById(boardBean.getDashboardId());
Assert.notNull(board);
if (board == null) {
throw new EnMeDashboardNotFoundException("dashboard not found");
}
board.setPageBoardName(boardBean.getDashboardName());
board.setBoardSequence(boardBean.getSequence());
board.setPageLayout(LayoutEnum.getDashboardLayout(boardBean.getLayout()) == null ? LayoutEnum.BB_BLOCK : LayoutEnum.getDashboardLayout(boardBean.getLayout()));
board.setDescription(boardBean.getDashboardDesc());