jBPM :: Distribution 6.2.0-SNAPSHOT

Uses of Interface
org.kie.api.task.model.Attachment

Packages that use Attachment
org.jbpm.kie.services.impl   
org.jbpm.runtime.manager.impl.task   
org.jbpm.services.api   
org.jbpm.services.ejb.impl   
org.jbpm.services.task.commands   
org.jbpm.services.task.impl   
org.jbpm.services.task.impl.command   
org.jbpm.services.task.impl.model   
org.jbpm.services.task.impl.model.xml   
org.jbpm.services.task.persistence   
org.jbpm.services.task.utils   
org.kie.api.task   
org.kie.api.task.model   
 

Uses of Attachment in org.jbpm.kie.services.impl
 

Methods in org.jbpm.kie.services.impl that return Attachment
 Attachment UserTaskServiceImpl.getAttachmentById(Long taskId, Long attachmentId)
           
 

Methods in org.jbpm.kie.services.impl that return types with arguments of type Attachment
 List<Attachment> UserTaskServiceImpl.getAttachmentsByTaskId(Long taskId)
           
 

Uses of Attachment in org.jbpm.runtime.manager.impl.task
 

Methods in org.jbpm.runtime.manager.impl.task that return Attachment
 Attachment SynchronizedTaskService.getAttachmentById(long attachId)
           
 

Methods in org.jbpm.runtime.manager.impl.task that return types with arguments of type Attachment
 List<Attachment> SynchronizedTaskService.getAllAttachmentsByTaskId(long taskId)
           
 

Methods in org.jbpm.runtime.manager.impl.task with parameters of type Attachment
 long SynchronizedTaskService.addAttachment(long taskId, Attachment attachment, Content content)
           
 

Uses of Attachment in org.jbpm.services.api
 

Methods in org.jbpm.services.api that return Attachment
 Attachment UserTaskService.getAttachmentById(Long taskId, Long attachmentId)
          Get attachment by identifier
 

Methods in org.jbpm.services.api that return types with arguments of type Attachment
 List<Attachment> UserTaskService.getAttachmentsByTaskId(Long taskId)
          Get attachments for a task
 

Uses of Attachment in org.jbpm.services.ejb.impl
 

Methods in org.jbpm.services.ejb.impl that return Attachment
 Attachment TaskServiceEJBImpl.getAttachmentById(long attachId)
           
 

Methods in org.jbpm.services.ejb.impl that return types with arguments of type Attachment
 List<Attachment> TaskServiceEJBImpl.getAllAttachmentsByTaskId(long taskId)
           
 

Methods in org.jbpm.services.ejb.impl with parameters of type Attachment
 long TaskServiceEJBImpl.addAttachment(long taskId, Attachment attachment, Content content)
           
 

Uses of Attachment in org.jbpm.services.task.commands
 

Methods in org.jbpm.services.task.commands that return Attachment
 Attachment GetAttachmentCommand.execute(org.kie.internal.command.Context cntxt)
           
 Attachment AddAttachmentCommand.getAttachment()
           
 

Methods in org.jbpm.services.task.commands that return types with arguments of type Attachment
 List<Attachment> GetAllAttachmentsCommand.execute(org.kie.internal.command.Context cntxt)
           
 

Methods in org.jbpm.services.task.commands with parameters of type Attachment
protected  void UserGroupCallbackTaskCommand.doCallbackOperationForAttachment(Attachment attachment, org.kie.internal.task.api.TaskContext context)
           
 void AddAttachmentCommand.setAttachment(Attachment attachment)
           
 

Constructors in org.jbpm.services.task.commands with parameters of type Attachment
AddAttachmentCommand(Long taskId, Attachment attachment, Content content)
           
 

Uses of Attachment in org.jbpm.services.task.impl
 

Methods in org.jbpm.services.task.impl that return Attachment
 Attachment TaskAttachmentServiceImpl.getAttachmentById(long attachId)
           
 

Methods in org.jbpm.services.task.impl that return types with arguments of type Attachment
 List<Attachment> TaskAttachmentServiceImpl.getAllAttachmentsByTaskId(long taskId)
           
 

Methods in org.jbpm.services.task.impl with parameters of type Attachment
 long TaskAttachmentServiceImpl.addAttachment(long taskId, Attachment attachment, Content content)
           
 

Uses of Attachment in org.jbpm.services.task.impl.command
 

Methods in org.jbpm.services.task.impl.command that return Attachment
 Attachment CommandBasedTaskService.getAttachmentById(long attachId)
           
 

Methods in org.jbpm.services.task.impl.command that return types with arguments of type Attachment
 List<Attachment> CommandBasedTaskService.getAllAttachmentsByTaskId(long taskId)
           
 

Methods in org.jbpm.services.task.impl.command with parameters of type Attachment
 long CommandBasedTaskService.addAttachment(long taskId, Attachment attachment, Content content)
           
 

Uses of Attachment in org.jbpm.services.task.impl.model
 

Classes in org.jbpm.services.task.impl.model that implement Attachment
 class AttachmentImpl
           
 

Methods in org.jbpm.services.task.impl.model that return Attachment
 Attachment TaskDataImpl.removeAttachment(long attachmentId)
          Removes the Attachment specified by the attachmentId.
 

Methods in org.jbpm.services.task.impl.model that return types with arguments of type Attachment
 List<Attachment> TaskDataImpl.getAttachments()
           
 

Methods in org.jbpm.services.task.impl.model with parameters of type Attachment
 void TaskDataImpl.addAttachment(Attachment attachment)
          Adds the specified attachment to our list of Attachments.
 

Method parameters in org.jbpm.services.task.impl.model with type arguments of type Attachment
 void TaskDataImpl.setAttachments(List<Attachment> attachments)
           
 

Uses of Attachment in org.jbpm.services.task.impl.model.xml
 

Classes in org.jbpm.services.task.impl.model.xml that implement Attachment
 class JaxbAttachment
           
 

Methods in org.jbpm.services.task.impl.model.xml that return types with arguments of type Attachment
 List<Attachment> JaxbTaskData.getAttachments()
           
 

Constructors in org.jbpm.services.task.impl.model.xml with parameters of type Attachment
JaxbAttachment(Attachment attachment)
           
 

Uses of Attachment in org.jbpm.services.task.persistence
 

Methods in org.jbpm.services.task.persistence that return Attachment
 Attachment JPATaskPersistenceContext.findAttachment(Long attachmentId)
           
 Attachment JPATaskModelFactory.newAttachment()
           
 Attachment JPATaskPersistenceContext.persistAttachment(Attachment attachment)
           
 Attachment JPATaskPersistenceContext.removeAttachment(Attachment attachment)
           
 Attachment JPATaskPersistenceContext.updateAttachment(Attachment attachment)
           
 

Methods in org.jbpm.services.task.persistence with parameters of type Attachment
 Attachment JPATaskPersistenceContext.persistAttachment(Attachment attachment)
           
 Attachment JPATaskPersistenceContext.removeAttachment(Attachment attachment)
           
 Attachment JPATaskPersistenceContext.updateAttachment(Attachment attachment)
           
 

Uses of Attachment in org.jbpm.services.task.utils
 

Methods in org.jbpm.services.task.utils that return types with arguments of type Attachment
static List<Attachment> CollectionUtils.readAttachmentList(ObjectInput in)
           
 

Method parameters in org.jbpm.services.task.utils with type arguments of type Attachment
static void CollectionUtils.writeAttachmentList(List<Attachment> list, ObjectOutput out)
           
 

Uses of Attachment in org.kie.api.task
 

Methods in org.kie.api.task that return Attachment
 Attachment TaskService.getAttachmentById(long attachId)
           
 

Uses of Attachment in org.kie.api.task.model
 

Methods in org.kie.api.task.model that return types with arguments of type Attachment
 List<Attachment> TaskData.getAttachments()
           
 


jBPM :: Distribution 6.2.0-SNAPSHOT

Copyright © 2001-2015 JBoss by Red Hat. All Rights Reserved.