Java Doc for Process.java in  » Workflow-Engines » bexee » bexee » model » process » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Workflow Engines » bexee » bexee.model.process 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


bexee.model.process.Process

Process
public interface Process extends BPELElement(Code)
This is a representation of a BPEL process element from a BPEL document. Usually an instance of this class will be embedded in a BPELProcess instance containing additional information about a business process.
version:
   $Revision: 1.9 $, $Date: 2004/12/09 12:34:35 $
author:
   Patric Fornasier
author:
   Pawel Kowalski


Field Summary
final public static  booleanDEFAULT_ABSTRACT_PROCESS
     Default value for the abstractness of a BPEL process.
final public static  booleanDEFAULT_ENABLE_INSTANCE_COMPENSATION
     Default instance compensation value.
final public static  StringDEFAULT_EXPRESSION_LANGUAGE
     Default expression language.
final public static  StringDEFAULT_QUERY_LANGUAGE
     Default query language.
final public static  booleanDEFAULT_SUPPRESS_JOIN_FAILURE
     Default suppress join failure value.


Method Summary
public  ActivitygetActivity()
     Get the root activity of this process.
public  CompensationHandlergetCompensationHandler()
     Get the CompensationHandler of this process.
public  CorrelationSetsgetCorrelationSets()
     Get the CorrelationSets of this process.
public  EventHandlersgetEventHandlers()
     Get the EventHandlers of this process.
public  StringgetExpressionLanguage()
     Get the expressionLanguage of this process.
public  FaultHandlersgetFaultHandlers()
     Get the FaultHandlers of this process.
public  StringgetName()
     Get the name of this process.
public  PartnerLinksgetPartnerLinks()
     Get the PartnerLinks of this process.
public  PartnersgetPartners()
     Get the Partners of this process.
public  StringgetQueryLanguage()
     Get the queryLanguage of this process.
public  StringgetTargetNamespace()
     Get the targetNamespace of this process.
public  VariablesgetVariables()
     Get the Variables of this process.
public  booleanisAbstractProcess()
     Is this an abstract process.
public  booleanisInstanceCompensable()
     Get the EnableInstanceCompensation property of this process.
public  booleanisSuppressJoinFailure()
     Are join failures suppressed in this process.
public  voidsetAbstractProcess(boolean isAbstractProcess)
     Set a property indicating whether this process is abstract.
public  voidsetActivity(Activity activity)
     Set the root activity of this process.
public  voidsetCompensationHandler(CompensationHandler handler)
     Set the CompensationHandler of this process.
public  voidsetCorrelationSets(CorrelationSets correlationSets)
     Set the CorrelationSets of this process.
public  voidsetEnableInstanceCompensation(boolean isInstanceCompensable)
     Set the EnableInstanceCompensation property of this process.
public  voidsetEventHandlers(EventHandlers handlers)
     Set the EventHandlers of this process.
public  voidsetExpressionLanguage(String expressionLanguage)
     Set the expressionLanguage of this process.
public  voidsetFaultHandlers(FaultHandlers faultHandlers)
     Set the FaultHandlers of this process.
public  voidsetName(String name)
     Set the name of this process.
public  voidsetPartnerLinks(PartnerLinks partnerLinks)
     Set the PartnerLinks of this process.
public  voidsetPartners(Partners partners)
     Set the Partners of this process.
public  voidsetQueryLanguage(String queryLanguage)
     Set the queryLanguage of this process.
public  voidsetSuppressJoinFailure(boolean suppressJoinFailure)
     Set the suppressJoinFailure property of this process.
public  voidsetTargetNamespace(String targetNamespace)
     Set the targetNamespace of this process.
public  voidsetVariables(Variables variables)
     Set the Variables of this process.

Field Detail
DEFAULT_ABSTRACT_PROCESS
final public static boolean DEFAULT_ABSTRACT_PROCESS(Code)
Default value for the abstractness of a BPEL process.



DEFAULT_ENABLE_INSTANCE_COMPENSATION
final public static boolean DEFAULT_ENABLE_INSTANCE_COMPENSATION(Code)
Default instance compensation value.



DEFAULT_EXPRESSION_LANGUAGE
final public static String DEFAULT_EXPRESSION_LANGUAGE(Code)
Default expression language.



DEFAULT_QUERY_LANGUAGE
final public static String DEFAULT_QUERY_LANGUAGE(Code)
Default query language.



DEFAULT_SUPPRESS_JOIN_FAILURE
final public static boolean DEFAULT_SUPPRESS_JOIN_FAILURE(Code)
Default suppress join failure value.





Method Detail
getActivity
public Activity getActivity()(Code)
Get the root activity of this process.



getCompensationHandler
public CompensationHandler getCompensationHandler()(Code)
Get the CompensationHandler of this process.



getCorrelationSets
public CorrelationSets getCorrelationSets()(Code)
Get the CorrelationSets of this process.



getEventHandlers
public EventHandlers getEventHandlers()(Code)
Get the EventHandlers of this process.



getExpressionLanguage
public String getExpressionLanguage()(Code)
Get the expressionLanguage of this process.



getFaultHandlers
public FaultHandlers getFaultHandlers()(Code)
Get the FaultHandlers of this process.



getName
public String getName()(Code)
Get the name of this process.



getPartnerLinks
public PartnerLinks getPartnerLinks()(Code)
Get the PartnerLinks of this process.



getPartners
public Partners getPartners()(Code)
Get the Partners of this process.



getQueryLanguage
public String getQueryLanguage()(Code)
Get the queryLanguage of this process.



getTargetNamespace
public String getTargetNamespace()(Code)
Get the targetNamespace of this process.



getVariables
public Variables getVariables()(Code)
Get the Variables of this process.



isAbstractProcess
public boolean isAbstractProcess()(Code)
Is this an abstract process.



isInstanceCompensable
public boolean isInstanceCompensable()(Code)
Get the EnableInstanceCompensation property of this process.



isSuppressJoinFailure
public boolean isSuppressJoinFailure()(Code)
Are join failures suppressed in this process.



setAbstractProcess
public void setAbstractProcess(boolean isAbstractProcess)(Code)
Set a property indicating whether this process is abstract.
Parameters:
  isAbstractProcess -



setActivity
public void setActivity(Activity activity)(Code)
Set the root activity of this process.
Parameters:
  activity -



setCompensationHandler
public void setCompensationHandler(CompensationHandler handler)(Code)
Set the CompensationHandler of this process.
Parameters:
  handler -



setCorrelationSets
public void setCorrelationSets(CorrelationSets correlationSets)(Code)
Set the CorrelationSets of this process.
Parameters:
  correlationSets -



setEnableInstanceCompensation
public void setEnableInstanceCompensation(boolean isInstanceCompensable)(Code)
Set the EnableInstanceCompensation property of this process.
Parameters:
  isInstanceCompensable -



setEventHandlers
public void setEventHandlers(EventHandlers handlers)(Code)
Set the EventHandlers of this process.
Parameters:
  handlers -



setExpressionLanguage
public void setExpressionLanguage(String expressionLanguage)(Code)
Set the expressionLanguage of this process.
Parameters:
  expressionLanguage -



setFaultHandlers
public void setFaultHandlers(FaultHandlers faultHandlers)(Code)
Set the FaultHandlers of this process.
Parameters:
  faultHandlers -



setName
public void setName(String name)(Code)
Set the name of this process.
Parameters:
  name -



setPartnerLinks
public void setPartnerLinks(PartnerLinks partnerLinks)(Code)
Set the PartnerLinks of this process.
Parameters:
  partnerLinks -



setPartners
public void setPartners(Partners partners)(Code)
Set the Partners of this process.
Parameters:
  partners -



setQueryLanguage
public void setQueryLanguage(String queryLanguage)(Code)
Set the queryLanguage of this process.
Parameters:
  queryLanguage -



setSuppressJoinFailure
public void setSuppressJoinFailure(boolean suppressJoinFailure)(Code)
Set the suppressJoinFailure property of this process.
Parameters:
  suppressJoinFailure -



setTargetNamespace
public void setTargetNamespace(String targetNamespace)(Code)
Set the targetNamespace of this process.
Parameters:
  targetNamespace -



setVariables
public void setVariables(Variables variables)(Code)
Set the Variables of this process.
Parameters:
  variables -



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.