return this.contentData.getHTML();
}
public ContentDTO getDTO() {
ContentDTO contentDTO = this.contentData.getDTO();
contentDTO.setLocation(getLocation());
contentDTO.setVisibleTo(getVisibleTo());
LinkedList<String> roleList = new LinkedList<String>();
for(Key role : getRoleList())
roleList.add(KeyFactory.keyToString(role));
contentDTO.setRoleList(roleList);
return contentDTO;
}