public Result<CharacterDescriptionDTO> updateCharacterDescription(
long campaignId, long characterId, Long byCharacterId,
String description, String sheet, Boolean dead, Boolean locked,
List<CharacterNoteDTO> notes, Map<Long, String> aliases) {
final Context context = createContext();
final Map<Long, String> map = new HashMap<Long, String>();
for(CharacterNoteDTO note : notes) {
if(note != null) {
map.put(note.getAuthor(), note.getContent());