You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2008/08/08 09:24:53 UTC

svn commit: r683887 - /tuscany/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java

Author: lresende
Date: Fri Aug  8 00:24:53 2008
New Revision: 683887

URL: http://svn.apache.org/viewvc?rev=683887&view=rev
Log:
Reverting continuum debug statements

Modified:
    tuscany/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java

Modified: tuscany/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java
URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java?rev=683887&r1=683886&r2=683887&view=diff
==============================================================================
--- tuscany/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java (original)
+++ tuscany/java/sca/modules/implementation-bpel/src/main/java/org/apache/tuscany/sca/implementation/bpel/impl/BPELImplementationProcessor.java Fri Aug  8 00:24:53 2008
@@ -213,13 +213,7 @@
         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 @@
         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 @@
         		} // 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 @@
         // 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 @@
         		} // 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