Package com.centraview.file

Examples of com.centraview.file.CvFileFacade.addFolder()


      attachmentFolderVO.setOwner(individualID);
      attachmentFolderVO.setName(CvFolderVO.EMAIL_ATTACHMENT_FOLDER);
      attachmentFolderVO.setParent(homeFolderVO.getFolderId());

      try {
        newFolderID = fileFacade.addFolder(individualID, attachmentFolderVO, this.dataSource);
      }catch(CvFileException cfe){
        cfe.printStackTrace();
        // TODO: what the hell do we do if we could not create the attachments folder?
      }
    }catch(Exception e){
View Full Code Here


      }
      // first try to create the users home folder, if this fails in any way, bail out.
      CvFileFacade cvf = new CvFileFacade();
      int folderID = 0;
      try {
        folderID = cvf.addFolder(individualId, uvo.getLoginName(), this.dataSource);
        // change the owner of the folder:
        cvdl.setSqlQueryToNull();
        cvdl.setSqlQuery("UPDATE cvfolder SET owner = ? WHERE folderId = ?");
        cvdl.setInt(1, userTargetIndividualId);
        cvdl.setInt(2, folderID);
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.