* @param request the request
* @param response the response
* @return a selection of the "show" view to render the reward
*/
public ModelAndView show(HttpServletRequest request, HttpServletResponse response) {
Reward reward = rewardLookupService.lookupReward(extractConfirmationNumber(request));
DataBinder binder = new DataBinder(reward, "reward");
binder.registerCustomEditor(MonetaryAmount.class, new MonetaryAmountEditor());
binder.registerCustomEditor(SimpleDate.class, new SimpleDateEditor());
return new ModelAndView("reward/show", binder.getBindingResult().getModel());
}