Java Doc for BPELElementFactory.java in  » Workflow-Engines » bexee » bexee » model » xmltobpel » 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.xmltobpel 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   bexee.model.xmltobpel.BPELElementFactory

BPELElementFactory
public class BPELElementFactory (Code)
This is a factory for the creation of BPEL process elements. The
author:
   Pawel Kowalski
version:
   $Revision: 1.13 $, $Date: 2004/12/09 12:34:14 $



Constructor Summary
public  BPELElementFactory()
     Create a BPELElementFactory object and initialize it.

Method Summary
public  AssigncreateAssign(StandardAttributes standardAttributes)
     Describe createAssign method here.
public  BpelCasecreateBpelCase(String condition)
     Create a new BpelCase for the use within a Switch activity.
public  ObjectcreateCorrelation(String set, String initiate, String pattern)
     Create a Correlation with all parameters.
public  CorrelationPatterncreateCorrelationPattern(String patternString)
     Create a CorrelationPattern with a patternString.
public  FromcreateFrom(String variable, String part, String property, String partnerLink, String endpointReference, String expression, String opaque)
     Create a From with all possible attributes.
public  ObjectcreateInvoke(StandardAttributes standardAttributes, String partnerLinkName, String portTypeString, String operation, String inVariableName, String outVariableName)
     Create an Invoke Activity with all possible attributes.
public  PartnerLinkcreatePartnerLink(String partnerLinkName, String partnerLinkType, String myRole, String partnerRole)
     Create a PartnerLink with all possible attributes.
public  ProcesscreateProcess(String name, String targetNamespace, String queryLanguage, String expressionLanguage, String suppressJoinFailure, String enableInstanceCompensation, String abstractProcess, String xmlns, Map nameSpaces)
     Create a Process instance with all possible attributes.
public  ReceivecreateReceive(StandardAttributes standardAttributes, String partnerLinkName, String portTypeString, String operation, String variableName, String createInstance)
     Create a Receive Activity with all possible attributes.
public  ReplycreateReply(StandardAttributes attributes, String partnerLink, String portType, String operation, String variable, String faultName)
     Describe createReply method here.
public  SequencecreateSequence(StandardAttributes standardAttributes)
     Create a new Sequence BPEL activity.
public  ObjectcreateSwitch(StandardAttributes standardAttributes)
     Describe createSwitch method here.
public  TocreateTo(String variable, String part, String property, String partnerLink)
     Create a To with all possible attributes.
public  VariablecreateVariable(String name, String messageType, String type, String element)
     Create a Variable with all possible attributes.
public  VariablescreateVariables()
     Describe createVariables method here.
public static  BPELElementFactorygetInstance(BPELProcess process)
     Create a new factory instance or if one already exists for this BPELProcessm, retrieve the existing one.
public  PartnerLinkretrievePartnerLink(String partnerLinkName)
     Retrieve an already created PartnerLink for an Activity using partnerLinks.
public  VariableretrieveVariable(String variableName)
     Retrieve an already created Variable for an Activity using variables.


Constructor Detail
BPELElementFactory
public BPELElementFactory()(Code)
Create a BPELElementFactory object and initialize it.




Method Detail
createAssign
public Assign createAssign(StandardAttributes standardAttributes)(Code)
Describe createAssign method here.
Parameters:
  standardAttributes - assign BPEL activity



createBpelCase
public BpelCase createBpelCase(String condition)(Code)
Create a new BpelCase for the use within a Switch activity. Create this BpelCase with a boolean condition used for selecting the BpelCase among all cases within a Switch.
Parameters:
  condition -



createCorrelation
public Object createCorrelation(String set, String initiate, String pattern)(Code)
Create a Correlation with all parameters. If the pattern parameter is null or empty, no CorrelationPattern object will be set.
Parameters:
  set -
Parameters:
  initiate -
Parameters:
  pattern -



createCorrelationPattern
public CorrelationPattern createCorrelationPattern(String patternString)(Code)
Create a CorrelationPattern with a patternString.
Parameters:
  patternString - a String value a CorrelationPattern object



createFrom
public From createFrom(String variable, String part, String property, String partnerLink, String endpointReference, String expression, String opaque)(Code)
Create a From with all possible attributes. Variables and PartnerLinks will not be created but retrieved from the enclosing process instead.
Parameters:
  variable -
Parameters:
  part -
Parameters:
  property -
Parameters:
  partnerLink -
Parameters:
  endpointReference -
Parameters:
  expression -
Parameters:
  opaque -



createInvoke
public Object createInvoke(StandardAttributes standardAttributes, String partnerLinkName, String portTypeString, String operation, String inVariableName, String outVariableName)(Code)
Create an Invoke Activity with all possible attributes. An Invoke created this way will be linked with already defined and existing Variables and PartnerLinks.
Parameters:
  standardAttributes - a StandardAttributes value
Parameters:
  partnerLinkName - a String value
Parameters:
  portTypeString - a String value
Parameters:
  operation -
Parameters:
  inVariableName - a String value
Parameters:
  outVariableName - a String value



createPartnerLink
public PartnerLink createPartnerLink(String partnerLinkName, String partnerLinkType, String myRole, String partnerRole)(Code)
Create a PartnerLink with all possible attributes. Register the created PartnerLink for retrieval by an Activity using PartnerLinks.
Parameters:
  partnerLinkName -
Parameters:
  partnerLinkType -
Parameters:
  myRole -
Parameters:
  partnerRole -



createProcess
public Process createProcess(String name, String targetNamespace, String queryLanguage, String expressionLanguage, String suppressJoinFailure, String enableInstanceCompensation, String abstractProcess, String xmlns, Map nameSpaces)(Code)
Create a Process instance with all possible attributes. Default values will be set when an attribute is empty or null.
Parameters:
  name -
Parameters:
  targetNamespace -
Parameters:
  queryLanguage -
Parameters:
  expressionLanguage -
Parameters:
  suppressJoinFailure -
Parameters:
  enableInstanceCompensation -
Parameters:
  abstractProcess -
Parameters:
  xmlns -
Parameters:
  nameSpaces -



createReceive
public Receive createReceive(StandardAttributes standardAttributes, String partnerLinkName, String portTypeString, String operation, String variableName, String createInstance)(Code)
Create a Receive Activity with all possible attributes. A Receive created this way will be linked with an already defined existing Variables.
Parameters:
  standardAttributes - a StandardAttributes value
Parameters:
  partnerLinkName - a String value
Parameters:
  portTypeString - a String value
Parameters:
  operation -
Parameters:
  variableName - a String value
Parameters:
  createInstance - Receive activity



createReply
public Reply createReply(StandardAttributes attributes, String partnerLink, String portType, String operation, String variable, String faultName)(Code)
Describe createReply method here.
Parameters:
  attributes -
Parameters:
  partnerLink -
Parameters:
  portType -
Parameters:
  operation -
Parameters:
  variable -
Parameters:
  faultName -



createSequence
public Sequence createSequence(StandardAttributes standardAttributes)(Code)
Create a new Sequence BPEL activity.
Parameters:
  standardAttributes - a StandardAttributes value Sequence activity



createSwitch
public Object createSwitch(StandardAttributes standardAttributes)(Code)
Describe createSwitch method here.
Parameters:
  standardAttributes -



createTo
public To createTo(String variable, String part, String property, String partnerLink)(Code)
Create a To with all possible attributes. Variables and PartnerLinks will not be created but retrieved from the enclosing process instead.
Parameters:
  variable -
Parameters:
  part -
Parameters:
  property -
Parameters:
  partnerLink -



createVariable
public Variable createVariable(String name, String messageType, String type, String element)(Code)
Create a Variable with all possible attributes. Register the created Variable for retrieval by an invoke or receive element.
Parameters:
  name -
Parameters:
  messageType -
Parameters:
  type -
Parameters:
  element - a Variable value



createVariables
public Variables createVariables()(Code)
Describe createVariables method here.



getInstance
public static BPELElementFactory getInstance(BPELProcess process)(Code)
Create a new factory instance or if one already exists for this BPELProcessm, retrieve the existing one.
Parameters:
  process -



retrievePartnerLink
public PartnerLink retrievePartnerLink(String partnerLinkName)(Code)
Retrieve an already created PartnerLink for an Activity using partnerLinks. If the partnerLinkName is null, empty or a PartnerLink with this name has not been created, this method will return a null value.
Parameters:
  partnerLinkName - the name of the PartnerLink to be retrieved. a PartnerLink or null.



retrieveVariable
public Variable retrieveVariable(String variableName)(Code)
Retrieve an already created Variable for an Activity using variables. If the variableName parameter is null, empty or the Variable has not been created, this method will return null value.
Parameters:
  variableName - the name of the Variable to be retrieved. a Variable or null if the variableName is null, empty or aVariable with this name has not yet been created.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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