Package eu.semberal.reminders.stripes.resolutions

Examples of eu.semberal.reminders.stripes.resolutions.TextResolution


            notesService.saveNote(n);
        } catch (Exception e) {
            log.error(e.getMessage());
        }

        return new TextResolution("OK");
    }
View Full Code Here


    public Resolution deleteNote() {
        Note n = notesService.getNote(noteId);
        if (!n.getUser().equals(getContext().getUser())) return null;
        notesService.deleteNote(noteId);
        return new TextResolution("OK");
    }
View Full Code Here

    public Resolution hideNote() {
        Note n = notesService.getNote(noteId);
        if (!n.getUser().equals(getContext().getUser())) return null;
        notesService.activateNote(noteId, false, false);
        return new TextResolution("OK");
    }
View Full Code Here

TOP

Related Classes of eu.semberal.reminders.stripes.resolutions.TextResolution

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.