Uses of Class
org.jboss.seam.annotations.Transactional

Packages that use Transactional
org.jboss.seam.bpm A set of Seam components for business process management via jBPM, including control of process and task instances, rendering of task lists, and integration with jBPM. 
org.jboss.seam.framework A framework for data access in Seam. 
 

Uses of Transactional in org.jboss.seam.bpm
 

Methods in org.jboss.seam.bpm with annotations of type Transactional
 String PooledTask.assign(String actorId)
          Assign the TaskInstance with the id passed in the request parameter named "taskId" to the given actor id.
 String PooledTask.assignToCurrentActor()
          Assign the TaskInstance with the id passed in the request parameter named "taskId" to the current actor.
 List<org.jbpm.taskmgmt.exe.TaskInstance> PooledTaskInstanceList.getPooledTaskInstanceList()
           
 List<org.jbpm.graph.exe.ProcessInstance> ProcessInstanceFinder.getProcessInstanceList()
           
 org.jbpm.taskmgmt.exe.TaskInstance PooledTask.getTaskInstance()
           
 Map<String,List<org.jbpm.taskmgmt.exe.TaskInstance>> TaskInstanceListForType.getTaskInstanceList()
           
 List<org.jbpm.taskmgmt.exe.TaskInstance> TaskInstanceList.getTaskInstanceList()
           
 List<org.jbpm.taskmgmt.exe.TaskInstance> TaskInstancePriorityList.getTaskInstanceList()
           
 String PooledTask.unassign()
          Unassign the TaskInstance with the id passed in the request parameter named "taskId" from the actor to which it is assigned, and return it to the pool it came from.
 

Uses of Transactional in org.jboss.seam.framework
 

Methods in org.jboss.seam.framework with annotations of type Transactional
 E EntityHome.find()
          Implementation of find() for JPA
 E HibernateEntityHome.find()
           
 javax.faces.model.DataModel Query.getDataModel()
          Wrap the result set in a JSF DataModel Delegates to DataModels.getDataModel(Query)
 E Home.getInstance()
          Get the managed entity, using the id from Home.getId() to load it from the Persistence Context or creating a new instance if the id is not defined.
 Long Query.getLastFirstResult()
          Get the index of the first result of the last page
 Integer Query.getPageCount()
          Get the total number of pages
 Long HibernateEntityQuery.getResultCount()
           
 Long EntityQuery.getResultCount()
          Get the number of results this query returns Any changed restriction values will be applied
 List<E> HibernateEntityQuery.getResultList()
           
 List<E> EntityQuery.getResultList()
          Get the list of results this query returns Any changed restriction values will be applied
 E HibernateEntityQuery.getSingleResult()
           
 E EntityQuery.getSingleResult()
          Get a single result from the query Any changed restriction values will be applied
 boolean EntityHome.isManaged()
          Returns true if the entity instance is managed
 boolean HibernateEntityHome.isManaged()
           
 boolean HibernateEntityQuery.isNextExists()
           
 boolean EntityQuery.isNextExists()
           
 void Query.last()
          Move the result set cursor to the beginning of the last page
 String EntityHome.persist()
          Persist unmanaged entity instance to the underlying database.
 String HibernateEntityHome.persist()
           
 String EntityHome.remove()
          Remove managed entity instance from the Persistence Context and the underlying database.
 String HibernateEntityHome.remove()
           
 String EntityHome.update()
          Flush any changes made to the managed entity instance to the underlying database.
 String HibernateEntityHome.update()