Package de.xanders.data.system.dao

Examples of de.xanders.data.system.dao.Note


    /**
     * @see NoteService#getNoteById(java.lang.Long)
     */
    protected de.xanders.data.system.vo.NoteVO handleGetNoteById(java.lang.Long noteId)
        throws java.lang.Exception {
      Note note = this.getNoteDao().load(noteId);
      return this.getNoteDao().toNoteVO(note);
    }
View Full Code Here


    /**
     * @see NoteService#saveNote(NoteVO)
     */
    protected void handleSaveNote(NoteVO noteVO)
        throws java.lang.Exception {
      Note note = this.getNoteDao().noteVOToEntity(noteVO);
        if (note.getNoteId() == null) {
            this.getNoteDao().create(note);
        }
        else {
            this.getNoteDao().update(note);           
        }
View Full Code Here

TOP

Related Classes of de.xanders.data.system.dao.Note

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.