throw new IllegalStateException("Found a null catId executing action viewCategory");
_currentCategory = _catalogControl.getCategory(categoryId);
Product[] productArray = _catalogControl.getProductListByCategory(categoryId);
Forward forward = new Forward("category");
forward.addActionOutput("products", productArray);
forward.addActionOutput("category", _currentCategory);
return forward;
}