Package eu.semberal.reminders.entity

Examples of eu.semberal.reminders.entity.SizeAndPosition


        Note note = notesService.getNote(noteId); //security check if user owns the note
        if (note == null || !note.getUser().equals(getContext().getUser()))
            return new ErrorResolution(403);

        note.setSizeAndPosition(new SizeAndPosition());
        try {
            notesService.saveNote(note);
        } catch (Exception e) {
            log.error(e.getMessage());
        }
View Full Code Here

TOP

Related Classes of eu.semberal.reminders.entity.SizeAndPosition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.