Module module = ModuleData.getModule(ModuleHelper.class);
User user = UserData.getUser();
int accessLevel = module.getAccessLevel(user.getRole());
if(accessLevel < ModuleHelper.ADD)
throw new UserException();
Page page = PageData.getPage(KeyFactory.stringToKey(pageEncoded));
ContentType contentData = ContentData.getContentType(contentDTO.getClass().getSimpleName().replace("DTO", ""));
Content content = new Content(contentData, page.getId(), contentDTO.getLocation());
content.update(contentDTO);