Examples of saveExecutionNotes()


Examples of it.eng.spagobi.analiticalmodel.document.dao.IObjNoteDAO.saveExecutionNotes()

        objnote = new ObjNote();
        objnote.setContent(notes.getBytes());
        objnote.setExecReq(execIdentifier);
        objnote.setIsPublic((visibility.equalsIgnoreCase("PUBLIC")?true:false));
        objnote.setOwner(owner);
        objNoteDAO.saveExecutionNotes(objectId, objnote);
      }
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

Examples of it.eng.spagobi.analiticalmodel.document.dao.IObjNoteDAO.saveExecutionNotes()

          } else {
            objNote = new ObjNote();
            objNote.setContent(notes.getBytes());
            objNote.setExecReq(execIdentifier);
            if(errorHandler.isOKBySeverity(EMFErrorSeverity.ERROR)) {
              objNoteDAO.saveExecutionNotes(biobject.getId(), objNote);
                }         
          }
      } catch (Exception e) {
        logger.warn("Error while saving notes", e);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.