*/
public Questions getCategoryQuestions(String categoryName) {
Questions categoryQuestions = null;
Categories categories = (Categories) getDomainModel().getEntry(
"Categories");
Category category = categories.getCategory(categoryName);
if (category != null) {
categoryQuestions = getCategoryQuestions(category.getOid());
}
return categoryQuestions;
}