Package it.eng.spagobi.analiticalmodel.document.dao

Examples of it.eng.spagobi.analiticalmodel.document.dao.ISubObjectDAO.saveSubObject()


      objSub.setName(analysisName);
      objSub.setContent(content.getBytes());
     
      //if subobject doesn't exist, it will be created
      if (!subobjExists)
        id = subdao.saveSubObject(docId, objSub);
      else
        //update the subobject
        id = subdao.modifySubObject(docId, objSub);;
     
      String toReturn = "OK - " + id.toString();
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.