站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss Seam 1.2.0 patch1 API 英文版文档

BusinessProcessContext (JBoss Seam API Documentation) - JBoss Seam 1.2.0 patch1 API 英文版文档


org.jboss.seam.contexts
Class BusinessProcessContext

java.lang.Object
  extended by org.jboss.seam.contexts.BusinessProcessContext
All Implemented Interfaces:
Context

public class BusinessProcessContext
extends Object
implements Context

Exposes a jbpm variable context instance for reading/writing.

Version:
$Revision: 1.34 $
Author:
Thomas Heute, Steve Ebersole, Gavin King

Constructor Summary
BusinessProcessContext()
           
 
Method Summary
 void clear()
           
 void flush()
          Propagate all additions and removals to the jBPM database if there is a current process instance, or do nothing if there is no current process instance.
 Object get(Class clazz)
           
 Object get(String name)
           
 String[] getNames()
           
 ScopeType getType()
           
 boolean isSet(String name)
           
 void remove(String name)
           
 void set(String name, Object value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BusinessProcessContext

public BusinessProcessContext()
Method Detail

getType

public ScopeType getType()
Specified by:
getType in interface Context

get

public Object get(String name)
Specified by:
get in interface Context

set

public void set(String name,
                Object value)
Specified by:
set in interface Context

isSet

public boolean isSet(String name)
Specified by:
isSet in interface Context

remove

public void remove(String name)
Specified by:
remove in interface Context

getNames

public String[] getNames()
Specified by:
getNames in interface Context

get

public Object get(Class clazz)
Specified by:
get in interface Context

clear

public void clear()

flush

public void flush()
Propagate all additions and removals to the jBPM database if there is a current process instance, or do nothing if there is no current process instance.

Specified by:
flush in interface Context