return SUCCESS;
}
private List<ContentRecordVO> getReferencingContents() throws Throwable {
List<ContentRecordVO> list = new ArrayList<ContentRecordVO>();
CategoryUtilizer contentManager = (CategoryUtilizer) this.getContentManager();
List<ContentRecordVO> referencingContents = contentManager.getCategoryUtilizers(this.getSelectedNode());
for (ContentRecordVO contentVo : referencingContents) {
if (contentVo.getTypeCode().equals(this.getContentTypeCode())) {
list.add(contentVo);
}
}