summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/implementation-bpel/src/main
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2008-08-08 07:24:53 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2008-08-08 07:24:53 +0000
commit1e4daaf7e1b5a4a34bbd28fa1ff931a78b3e8e64 (patch)
treebfd6520978d54f2b6216ec9e2276e1eb62fb8b7d /java/sca/modules/implementation-bpel/src/main
parent9d28a487fba3eaba7e3ebdd916c9989cc1a0689e (diff)
Reverting continuum debug statements
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@683887 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/implementation-bpel/src/main')
-rw-r--r--java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java b/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
index c6422c7ec6..e047ae3cc7 100644
--- a/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
+++ b/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
@@ -213,13 +213,7 @@ public class BPELImplementationProcessor extends BaseStAXArtifactProcessor imple
BPELProcessDefinition theProcess = impl.getProcessDefinition();
List<BPELPartnerLinkElement> partnerLinks = theProcess.getPartnerLinks();
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Processing partner links");
-
for( BPELPartnerLinkElement pLink : partnerLinks ) {
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Partner link name " + pLink.getName());
- System.out.println("XXXX BPEL Partner link toString() " + pLink.toString());
// check that the partner link has been designated as service or reference in SCA terms
if ( pLink.isSCATyped() ) {
String SCAName = pLink.getSCAName();
@@ -259,16 +253,10 @@ public class BPELImplementationProcessor extends BaseStAXArtifactProcessor imple
WSDLInterfaceContract interfaceContract = wsdlFactory.createWSDLInterfaceContract();
reference.setInterfaceContract(interfaceContract);
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Reference name: " + name);
-
// Establish whether there is just a call interface or a call + callback interface
PortType callPT = null;
PortType callbackPT = null;
if( myRolePT != null ) {
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Reference myRolePT.toString(): X" + myRolePT.toString() + "X");
- System.out.println("XXXX BPEL Reference myRolePT qname: X" + myRolePT.getQName() + "X");
callPT = myRolePT;
// If the 2 port types are not the same one, there is a callback...
if( partnerRolePT != null ) {
@@ -277,9 +265,6 @@ public class BPELImplementationProcessor extends BaseStAXArtifactProcessor imple
} // end if
} // end if
} else if ( partnerRolePT != null ) {
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Reference partnerRolePT.toString(): X" + partnerRolePT.toString() + "X");
- System.out.println("XXXX BPEL Reference partnerRolePT qname: X" + partnerRolePT.getQName() + "X");
callPT = partnerRolePT;
} // end if
// No interfaces mean an error - throw an exception
@@ -346,17 +331,10 @@ public class BPELImplementationProcessor extends BaseStAXArtifactProcessor imple
// Set the name of the service to the supplied name
service.setName(name);
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Reference name: " + name);
-
// Establish whether there is just a call interface or a call + callback interface
PortType callPT = null;
PortType callbackPT = null;
if( myRolePT != null ) {
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Service myRolePT.toString(): X" + myRolePT.toString() + "X");
- System.out.println("XXXX BPEL Service myRolePT qname: X" + myRolePT.getQName() + "X");
-
callPT = myRolePT;
// If the 2 port types are not the same one, there is a callback...
if( partnerRolePT != null ) {
@@ -365,10 +343,6 @@ public class BPELImplementationProcessor extends BaseStAXArtifactProcessor imple
} // end if
} // end if
} else if ( partnerRolePT != null ) {
- // TODO - debugging the continuum build
- System.out.println("XXXX BPEL Reference partnerRolePT.toString(): X" + partnerRolePT.toString() + "X");
- System.out.println("XXXX BPEL Reference partnerRolePT qname: X" + partnerRolePT.getQName() + "X");
-
callPT = partnerRolePT;
} // end if
// No interfaces mean an error - throw an exception