else {
main = getMainView();
jsp = JSP_PRODUCT_DETAILS;
}
ProductDetailsView pv = new ProductDetailsView(main);
if (p != null) {
pv.setProduct(p);
pv.addContentView(new ContentView(jsp, p.getProductName()));
}
else {
pv.addContentView(new ContentView(JSP_MESSAGE, "Not Found"));
pv.setMessage("Sorry, product not found.");
}
return pv;
}