Examples of storeImage()


Examples of it.eng.spagobi.engines.dossier.dao.IDossierPartsTempDAO.storeImage()

      byte[] firstImg = decoder.decodeBuffer(firstImgBase64);
      logger.debug("image bytes decoded " + firstImg);
      // store image into cms
      IDossierPartsTempDAO dptDAO = DAOFactory.getDossierPartsTempDAO();
      dptDAO.setUserProfile(profile);
      dptDAO.storeImage(dossier.getId(), firstImg, confDoc.getLogicalName(), numPage, workflowProcessId);
      logger.debug("image stored into cms");
  } catch (Exception e) {
      logger.error("Error while generating and storing " + "images of the document"
        + confDoc.getLogicalName() + " \n " + e);
      throw 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.