public CategoryQuestionLiteVoCollection listCategoryQuestionsLite(ims.ocrr.vo.lookups.Category category) { if(category == null) throw new CodingRuntimeException("category parameter is null - listCategoryQuestions"); List list = getDomainFactory().find("from CategoryQuestion cat where cat.oCRRCategory = :category order by systemInformation.creationDateTime", new String[]{"category"}, new Object[]{getDomLookup(category)}); return CategoryQuestionLiteVoAssembler.createCategoryQuestionLiteVoCollectionFromCategoryQuestion(list); }