Examples of BIObjectNotesManager


Examples of it.eng.spagobi.analiticalmodel.document.handlers.BIObjectNotesManager

    logger.debug("IN");
    try {
      // retrieving execution instance from session, no need to check if user is able to execute the current document
      ExecutionInstance executionInstance = getContext().getExecutionInstance( ExecutionInstance.class.getName() );
      BIObject obj = executionInstance.getBIObject();
      BIObjectNotesManager objectNManager = new BIObjectNotesManager();
      String execIdentifier = objectNManager.getExecutionIdentifier(obj);
     
      String previousNotes = this.getAttributeAsString("PREVIOUS_NOTES");
      logger.debug("Parameter [" + PREVIOUS_NOTES + "] is equal to [" + previousNotes + "]");
     
      String notes = this.getAttributeAsString("NOTES");
View Full Code Here

Examples of it.eng.spagobi.analiticalmodel.document.handlers.BIObjectNotesManager

  public void doService() {
    logger.debug("IN");
    IEngUserProfile profile = (IEngUserProfile) this.getUserProfile();
    ExecutionInstance executionInstance;
    executionInstance = getContext().getExecutionInstance( ExecutionInstance.class.getName() );
    String executionIdentifier=new BIObjectNotesManager().getExecutionIdentifier(executionInstance.getBIObject());
    Integer biobjectId = executionInstance.getBIObject().getId();
    List objNoteList=null;
    try {
      objNoteList=DAOFactory.getObjNoteDAO().getListExecutionNotes(biobjectId, executionIdentifier);
    } catch (EMFUserError e1) {
View Full Code Here

Examples of it.eng.spagobi.analiticalmodel.document.handlers.BIObjectNotesManager

    try {
     
      // retrieving execution instance from session, no need to check if user is able to execute the current document
      ExecutionInstance executionInstance = getContext().getExecutionInstance( ExecutionInstance.class.getName() );
      BIObject obj = executionInstance.getBIObject();
      BIObjectNotesManager objectNManager = new BIObjectNotesManager();
      String execIdentifier = objectNManager.getExecutionIdentifier(obj);
     
      String owner = this.getAttributeAsString(OWNER);
      logger.debug("Parameter [" + OWNER + "] is equal to [" + owner + "]");
     
      logger.debug("Deleting notes...");
View Full Code Here

Examples of it.eng.spagobi.analiticalmodel.document.handlers.BIObjectNotesManager

    logger.debug("IN");
    try {
      // retrieving execution instance from session, no need to check if user is able to execute the current document
      ExecutionInstance executionInstance = getContext().getExecutionInstance( ExecutionInstance.class.getName() );
      BIObject obj = executionInstance.getBIObject();
      BIObjectNotesManager objectNManager = new BIObjectNotesManager();
      String execIdentifier = objectNManager.getExecutionIdentifier(obj);
      String message = this.getAttributeAsString(MESSAGE);
      logger.debug("Parameter [" + MESSAGE + "] is equal to [" + message + "]");
     
      String owner = (this.getAttributeAsString(OWNER)==null)?"":this.getAttributeAsString(OWNER);
      logger.debug("Parameter [" + OWNER + "] is equal to [" + owner + "]");
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.