• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ByteArrayEntity类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.activiti.engine.impl.persistence.entity.ByteArrayEntity的典型用法代码示例。如果您正苦于以下问题:Java ByteArrayEntity类的具体用法?Java ByteArrayEntity怎么用?Java ByteArrayEntity使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ByteArrayEntity类属于org.activiti.engine.impl.persistence.entity包,在下文中一共展示了ByteArrayEntity类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: execute

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
public Attachment execute(CommandContext commandContext) {

    verifyParameters(commandContext);
    
    AttachmentEntity attachment = new AttachmentEntity();
    attachment.setName(attachmentName);
    attachment.setDescription(attachmentDescription);
    attachment.setType(attachmentType);
    attachment.setTaskId(taskId);
    attachment.setProcessInstanceId(processInstanceId);
    attachment.setUrl(url);
    
    DbSqlSession dbSqlSession = commandContext.getDbSqlSession();
    dbSqlSession.insert(attachment);
    
    if (content != null) {
      byte[] bytes = IoUtil.readInputStream(content, attachmentName);
      ByteArrayEntity byteArray = ByteArrayEntity.createAndInsert(bytes);
      attachment.setContentId(byteArray.getId());
    }

    commandContext.getHistoryManager()
      .createAttachmentComment(taskId, processInstanceId, attachmentName, true);
    
    return attachment;
  }
 
开发者ID:springvelocity,项目名称:xbpm5,代码行数:27,代码来源:CreateAttachmentCmd.java


示例2: execute

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
@Override
public InputStream execute(CommandContext commandContext) {
    DbSqlSession dbSqlSession = commandContext.getDbSqlSession();
    AttachmentEntity attachment = dbSqlSession.selectById(AttachmentEntity.class, attachmentId);

    String contentId = attachment.getContentId();
    if (contentId == null) {
        return null;
    }

    ByteArrayEntity byteArray = dbSqlSession.selectById(ByteArrayEntity.class, contentId);
    byte[] bytes = byteArray.getBytes();

    return new ByteArrayInputStream(bytes);
}
 
开发者ID:flowable,项目名称:flowable-engine,代码行数:16,代码来源:GetAttachmentContentCmd.java


示例3: createTask

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
public void createTask(CommandContext commandContext, DbSqlSession dbSqlSession, MailTransformer mailTransformer) throws MessagingException {
  // distill the task description from the mail body content (without the html tags)
  String taskDescription = mailTransformer.getHtml();
  taskDescription = taskDescription.replaceAll("\\<.*?\\>", "");
  taskDescription = taskDescription.replaceAll("\\s", " ");
  taskDescription = taskDescription.trim();
  if (taskDescription.length()>120) {
    taskDescription = taskDescription.substring(0, 117)+"...";
  }

  // create and insert the task
  TaskEntity task = new TaskEntity();
  task.setAssignee(userId);
  task.setName(mailTransformer.getMessage().getSubject());
  task.setDescription(taskDescription);
  dbSqlSession.insert(task);
  String taskId = task.getId();
  
  // add identity links for all the recipients
  for (String recipientEmailAddress: mailTransformer.getRecipients()) {
    User recipient = new UserQueryImpl(commandContext)
      .userEmail(recipientEmailAddress)
      .singleResult();
    if (recipient!=null) {
      task.addUserIdentityLink(recipient.getId(), "Recipient");
    }
  }
  
  // attach the mail and other attachments to the task
  List<AttachmentEntity> attachments = mailTransformer.getAttachments();
  for (AttachmentEntity attachment: attachments) {
    // insert the bytes as content
    ByteArrayEntity content = attachment.getContent();
    dbSqlSession.insert(content);
    // insert the attachment
    attachment.setContentId(content.getId());
    attachment.setTaskId(taskId);
    dbSqlSession.insert(attachment);
  }
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:41,代码来源:MailScanCmd.java


示例4: MailTransformer

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
public MailTransformer(Message message) throws Exception {
  this.message = message;
  processRecipients(message);
  processContentPart(0, message);
  
  AttachmentEntity attachment = new AttachmentEntity();
  attachment.setName(message.getSubject());
  attachment.setType("email");
  attachments.add(attachment);
  
  JSONObject jsonMail = new JSONObject();
  jsonMail.put("recipients", recipients);
  jsonMail.put("sentDate", message.getSentDate());
  jsonMail.put("receivedDate", message.getReceivedDate());
  jsonMail.put("subject", message.getSubject());
  jsonMail.put("htmlContent", getHtml());
  String jsonMailString = jsonMail.toString(2);
  byte[] bytes = jsonMailString.getBytes();
  attachment.setContent(new ByteArrayEntity(bytes));
  
  log.fine("=== json ==========================");
  log.fine(jsonMailString);

  log.fine("=== attachments ==========================");
  for (AttachmentEntity attachmentForLogging: attachments) {
    log.fine(attachmentForLogging.getName()+" | "+attachmentForLogging.getType()+" | "+attachmentForLogging.getContent().getBytes().length);
  }
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:29,代码来源:MailTransformer.java


示例5: processContentPart

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
protected void processContentPart(int indent, Part part) throws Exception {
  if (part.getContent() instanceof MimeMultipart) {
    log(indent, "--- multipart "+getMimeType(part)+" ----------------------------------");
    MimeMultipart mimeMultipart = (MimeMultipart) part.getContent();
    for (int i=0; i<mimeMultipart.getCount(); i++) {
      BodyPart bodyPart = mimeMultipart.getBodyPart(i);
      processContentPart(indent+1, bodyPart);
    }
    
  } else {
    log(indent, "--- part "+getMimeType(part)+" ----------------------------------");
    if (part.isMimeType("text/plain")) {
      String contentText = (String) part.getContent();
      log(indent, "adding plain text: "+contentText);
      messageText.append(contentText);
      
    } else if (part.isMimeType("text/html")){
      String rawHtml = (String) part.getContent();
      log(indent, "raw html: "+rawHtml);
      String cleanedUpHtml = htmlExtractBodyContent(rawHtml);
      log(indent, "adding cleaned up html: "+cleanedUpHtml);
      containsHtml = true;
      messageHtml.append(cleanedUpHtml);

    } else {
      String fileName = part.getFileName();
      log(indent, "unknown content part | "+part.getContentType()+" | "+part.getDisposition()+" | "+Arrays.toString(part.getHeader("Content-ID"))+" | "+fileName+" | "+part.getContent().getClass().getName());
      
      if (part.getSize()!=-1 && part.getSize()<ATTACHMENT_SIZE_LIMIT && (part.getContent() instanceof InputStream)) {
        String attachmentName = null;
        String attachmentType = null;
        String[] contentIdArray = part.getHeader("Content-ID");
        if (contentIdArray!=null && contentIdArray.length>0) {
          attachmentName = contentIdArray[0].trim();
          if (attachmentName.startsWith("<") && attachmentName.endsWith(">")) {
            attachmentName = attachmentName.substring(1, attachmentName.length()-2).trim();
          }
          attachmentType = getImageMimeType(attachmentName);
        } else if (Part.INLINE.equalsIgnoreCase(part.getDisposition())) {
          attachmentName = fileName;
          attachmentType = getImageMimeType(attachmentName);
          messageText.append("<img id=\"cid:"+fileName+"\" src=\"cid:"+fileName+"\" />");
          messageHtml.append("<img id=\"cid:"+fileName+"\" src=\"cid:"+fileName+"\" />");
        }
        if (attachmentName==null) {
          attachmentName = fileName;
          attachmentType = "email-attachment";
        }

        AttachmentEntity attachment = new AttachmentEntity();
        attachment.setName(attachmentName);
        attachment.setType(attachmentType);
        attachments.add(attachment);
        
        byte[] bytes = IoUtil.readInputStream((InputStream)part.getContent(), "mail attachment "+attachmentName);
        attachment.setContent(new ByteArrayEntity(bytes));
      }
    }
  }
  
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:62,代码来源:MailTransformer.java


示例6: execute

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
public InputStream execute(CommandContext commandContext) {
  DbSqlSession dbSqlSession = commandContext.getDbSqlSession();
  AttachmentEntity attachment = dbSqlSession.selectById(AttachmentEntity.class, attachmentId);
  
  String contentId = attachment.getContentId();
  if (contentId==null) {
    return null;
  }
  
  ByteArrayEntity byteArray = dbSqlSession.selectById(ByteArrayEntity.class, contentId);
  byte[] bytes = byteArray.getBytes();
  
  return new ByteArrayInputStream(bytes);
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:15,代码来源:GetAttachmentContentCmd.java


示例7: execute

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
public Attachment execute(CommandContext commandContext) {
  AttachmentEntity attachment = new AttachmentEntity();
  attachment.setName(attachmentName);
  attachment.setDescription(attachmentDescription);
  attachment.setType(attachmentType);
  attachment.setTaskId(taskId);
  attachment.setProcessInstanceId(processInstanceId);
  attachment.setUrl(url);
  
  DbSqlSession dbSqlSession = commandContext.getDbSqlSession();
  dbSqlSession.insert(attachment);
  
  if (content!=null) {
    byte[] bytes = IoUtil.readInputStream(content, attachmentName);
    ByteArrayEntity byteArray = new ByteArrayEntity(bytes);
    dbSqlSession.insert(byteArray);
    attachment.setContentId(byteArray.getId());
  }

  CommentManager commentManager = commandContext.getCommentManager();
  if (commentManager.isHistoryEnabled()) {
    String userId = Authentication.getAuthenticatedUserId();
    CommentEntity comment = new CommentEntity();
    comment.setUserId(userId);
    comment.setType(CommentEntity.TYPE_EVENT);
    comment.setTime(ClockUtil.getCurrentTime());
    comment.setTaskId(taskId);
    comment.setProcessInstanceId(processInstanceId);
    comment.setAction(Event.ACTION_ADD_ATTACHMENT);
    comment.setMessage(attachmentName);
    commentManager.insert(comment);
  }
  
  return attachment;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:36,代码来源:CreateAttachmentCmd.java


示例8: execute

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
@Override
public Attachment execute(CommandContext commandContext) {

    verifyParameters(commandContext);

    AttachmentEntity attachment = new AttachmentEntity();
    attachment.setName(attachmentName);
    attachment.setDescription(attachmentDescription);
    attachment.setType(attachmentType);
    attachment.setTaskId(taskId);
    attachment.setProcessInstanceId(processInstanceId);
    attachment.setUrl(url);
    attachment.setUserId(Authentication.getAuthenticatedUserId());
    attachment.setTime(commandContext.getProcessEngineConfiguration().getClock().getCurrentTime());

    DbSqlSession dbSqlSession = commandContext.getDbSqlSession();
    dbSqlSession.insert(attachment);

    if (content != null) {
        byte[] bytes = IoUtil.readInputStream(content, attachmentName);
        ByteArrayEntity byteArray = ByteArrayEntity.createAndInsert(bytes);
        attachment.setContentId(byteArray.getId());
        attachment.setContent(byteArray);
    }

    commandContext.getHistoryManager()
            .createAttachmentComment(taskId, processInstanceId, attachmentName, true);

    if (commandContext.getProcessEngineConfiguration().getEventDispatcher().isEnabled()) {
        // Forced to fetch the process-instance to associate the right process definition
        String processDefinitionId = null;
        if (attachment.getProcessInstanceId() != null) {
            ExecutionEntity process = commandContext.getExecutionEntityManager().findExecutionById(processInstanceId);
            if (process != null) {
                processDefinitionId = process.getProcessDefinitionId();
            }
        }

        commandContext.getProcessEngineConfiguration().getEventDispatcher().dispatchEvent(
                ActivitiEventBuilder.createEntityEvent(FlowableEngineEventType.ENTITY_CREATED, attachment, processInstanceId, processInstanceId, processDefinitionId));
        commandContext.getProcessEngineConfiguration().getEventDispatcher().dispatchEvent(
                ActivitiEventBuilder.createEntityEvent(FlowableEngineEventType.ENTITY_INITIALIZED, attachment, processInstanceId, processInstanceId, processDefinitionId));
    }

    return attachment;
}
 
开发者ID:flowable,项目名称:flowable-engine,代码行数:47,代码来源:CreateAttachmentCmd.java


示例9: getByteArrayValue

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
/**
 * @return the ByteArrayEntity that contains the byte array value, or null if the byte array value is null.
 * @deprecated use getBytes.
 */
@Deprecated
ByteArrayEntity getByteArrayValue();
 
开发者ID:springvelocity,项目名称:xbpm5,代码行数:7,代码来源:ValueFields.java


示例10: setByteArrayValue

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
void setByteArrayValue(ByteArrayEntity byteArrayValue); 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:2,代码来源:ValueFields.java


示例11: getByteArrayValue

import org.activiti.engine.impl.persistence.entity.ByteArrayEntity; //导入依赖的package包/类
ByteArrayEntity getByteArrayValue(); 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:2,代码来源:ValueFields.java



注:本文中的org.activiti.engine.impl.persistence.entity.ByteArrayEntity类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java App类代码示例发布时间:2022-05-22
下一篇:
Java MdcInjectionFilter类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap