Alex Guizar | 3 Sep 2007 04:02

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/integration/catalog ...

  User: aguizar 
  Date: 07/09/02 22:02:07

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/integration/catalog 
                        DefinitionCatalog.java
  Log:
  reimplemented definition catalog to achieve constant time lookups; previously they were proportional
to the number of definitions

  Revision  Changes    Path
  1.2       +28 -47    jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/integration/catalog/DefinitionCatalog.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: DefinitionCatalog.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/integration/catalog/DefinitionCatalog.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- DefinitionCatalog.java	20 Jul 2007 21:18:12 -0000	1.1
  +++ DefinitionCatalog.java	3 Sep 2007 02:02:07 -0000	1.2
   <at>  <at>  -15,79 +15,60  <at>  <at> 
   package org.jbpm.bpel.integration.catalog;

   import java.util.ArrayList;
  -import java.util.Arrays;
  +import java.util.Collections;
  +import java.util.HashMap;
   import java.util.Iterator;
(Continue reading)

Alex Guizar | 4 Sep 2007 08:36

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/integration/jms ...

  User: aguizar 
  Date: 07/09/04 02:36:17

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/integration/jms 
                        JmsIntegrationService.java
  Log:
  revised my reference extraction

  Revision  Changes    Path
  1.18      +10 -14    jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/integration/jms/JmsIntegrationService.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: JmsIntegrationService.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/integration/jms/JmsIntegrationService.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -b -r1.17 -r1.18
  --- JmsIntegrationService.java	28 Aug 2007 05:42:00 -0000	1.17
  +++ JmsIntegrationService.java	4 Sep 2007 06:36:16 -0000	1.18
   <at>  <at>  -21,7 +21,6  <at>  <at> 

   import javax.jms.JMSException;
   import javax.jms.Session;
  -import javax.wsdl.Definition;
   import javax.wsdl.Operation;
   import javax.wsdl.Port;
   import javax.wsdl.extensions.soap.SOAPAddress;
   <at>  <at>  -34,7 +33,6  <at>  <at> 
(Continue reading)

Alex Guizar | 4 Sep 2007 08:37

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml ...

  User: aguizar 
  Date: 07/09/04 02:37:41

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/xml 
                        AssignReader.java
  Log:
  BPEL-278 role referenced in <from> is now verified to exist in the partner link

  Revision  Changes    Path
  1.16      +32 -16    jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml/AssignReader.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: AssignReader.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml/AssignReader.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- AssignReader.java	26 Jul 2007 08:19:37 -0000	1.15
  +++ AssignReader.java	4 Sep 2007 06:37:41 -0000	1.16
   <at>  <at>  -15,6 +15,7  <at>  <at> 
   package org.jbpm.bpel.xml;

   import java.util.Iterator;
  +import java.util.Map;

   import javax.xml.namespace.QName;

   <at>  <at>  -45,12 +46,13  <at>  <at> 
(Continue reading)

Alex Guizar | 4 Sep 2007 08:42

[jbpm-cvs] jbpm.3/bpel/library/src/test/java/org/jbpm/bpel/xml/util ...

  User: aguizar 
  Date: 07/09/04 02:42:26

  Modified:    bpel/library/src/test/java/org/jbpm/bpel/xml/util 
                        XmlUtilTest.java
  Log:
  BPEL-190 introduced utility methods to get the value of an attribute or an element as a qname

  Revision  Changes    Path
  1.14      +2 -2      jbpm.3/bpel/library/src/test/java/org/jbpm/bpel/xml/util/XmlUtilTest.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: XmlUtilTest.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/test/java/org/jbpm/bpel/xml/util/XmlUtilTest.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- XmlUtilTest.java	8 Aug 2007 11:05:48 -0000	1.13
  +++ XmlUtilTest.java	4 Sep 2007 06:42:26 -0000	1.14
   <at>  <at>  -31,7 +31,7  <at>  <at> 

   /**
    *  <at> author Alejandro Guizar
  - *  <at> version $Revision: 1.13 $ $Date: 2007/08/08 11:05:48 $
  + *  <at> version $Revision: 1.14 $ $Date: 2007/09/04 06:42:26 $
    */
   public class XmlUtilTest extends TestCase {

(Continue reading)

Alex Guizar | 4 Sep 2007 08:42

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml/util ...

  User: aguizar 
  Date: 07/09/04 02:42:26

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/xml/util 
                        XmlUtil.java
  Log:
  BPEL-190 introduced utility methods to get the value of an attribute or an element as a qname

  Revision  Changes    Path
  1.21      +29 -18    jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml/util/XmlUtil.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: XmlUtil.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml/util/XmlUtil.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- XmlUtil.java	28 Aug 2007 05:41:59 -0000	1.20
  +++ XmlUtil.java	4 Sep 2007 06:42:26 -0000	1.21
   <at>  <at>  -53,17 +53,15  <at>  <at> 

   import com.ibm.wsdl.util.xml.DOMUtils;

  -import org.jbpm.bpel.BpelException;
   import org.jbpm.bpel.endpointref.EndpointReference;
   import org.jbpm.bpel.graph.exe.BpelFaultException;
   import org.jbpm.bpel.xml.BpelConstants;
  -import org.jbpm.bpel.xml.ProblemHandler;
(Continue reading)

Alex Guizar | 4 Sep 2007 08:42

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml ...

  User: aguizar 
  Date: 07/09/04 02:42:26

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/xml    
                        ReplyReader.java BpelReader.java ThrowReader.java
                        AppDescriptorReader.java
  Log:
  BPEL-190 introduced utility methods to get the value of an attribute or an element as a qname

  Revision  Changes    Path
  1.11      +15 -15    jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml/ReplyReader.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: ReplyReader.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/xml/ReplyReader.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- ReplyReader.java	31 May 2007 12:55:12 -0000	1.10
  +++ ReplyReader.java	4 Sep 2007 06:42:26 -0000	1.11
   <at>  <at>  -21,6 +21,7  <at>  <at> 
   import javax.wsdl.PortType;
   import javax.xml.namespace.QName;

  +import org.w3c.dom.Attr;
   import org.w3c.dom.Element;

   import org.jbpm.bpel.graph.basic.Reply;
(Continue reading)

Alex Guizar | 4 Sep 2007 08:42

[jbpm-cvs] jbpm.3/bpel/library/src/test/java/org/jbpm/bpel/xml ...

  User: aguizar 
  Date: 07/09/04 02:42:26

  Modified:    bpel/library/src/test/java/org/jbpm/bpel/xml   
                        WsdlConverterTest.java AppDescriptorWriterTest.java
                        BpelConverterTest.java
  Log:
  BPEL-190 introduced utility methods to get the value of an attribute or an element as a qname

  Revision  Changes    Path
  1.10      +5 -6      jbpm.3/bpel/library/src/test/java/org/jbpm/bpel/xml/WsdlConverterTest.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: WsdlConverterTest.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/test/java/org/jbpm/bpel/xml/WsdlConverterTest.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- WsdlConverterTest.java	9 Jun 2007 23:36:36 -0000	1.9
  +++ WsdlConverterTest.java	4 Sep 2007 06:42:26 -0000	1.10
   <at>  <at>  -42,7 +42,7  <at>  <at> 

   /**
    *  <at> author Juan Cantú
  - *  <at> version $Revision: 1.9 $ $Date: 2007/06/09 23:36:36 $
  + *  <at> version $Revision: 1.10 $ $Date: 2007/09/04 06:42:26 $
    */
   public class WsdlConverterTest extends TestCase {
(Continue reading)

Alex Guizar | 4 Sep 2007 08:42

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/variable/def ...

  User: aguizar 
  Date: 07/09/04 02:42:27

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/variable/def 
                        VariableType.java
  Log:
  BPEL-190 introduced utility methods to get the value of an attribute or an element as a qname

  Revision  Changes    Path
  1.8       +8 -14     jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/variable/def/VariableType.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: VariableType.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/variable/def/VariableType.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- VariableType.java	31 May 2007 12:55:16 -0000	1.7
  +++ VariableType.java	4 Sep 2007 06:42:27 -0000	1.8
   <at>  <at>  -32,35 +32,28  <at>  <at> 
   /**
    * Common base for metadata related to a kind of variable declaration.
    *  <at> author Alejandro Guízar
  - *  <at> version $Revision: 1.7 $ $Date: 2007/05/31 12:55:16 $
  + *  <at> version $Revision: 1.8 $ $Date: 2007/09/04 06:42:27 $
    */
   public abstract class VariableType implements Serializable {

(Continue reading)

Alex Guizar | 4 Sep 2007 08:42

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/sublang/xpath ...

  User: aguizar 
  Date: 07/09/04 02:42:26

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/sublang/xpath 
                        XPathEvaluator.java
  Log:
  BPEL-190 introduced utility methods to get the value of an attribute or an element as a qname

  Revision  Changes    Path
  1.9       +3 -7      jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/sublang/xpath/XPathEvaluator.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: XPathEvaluator.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/sublang/xpath/XPathEvaluator.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- XPathEvaluator.java	26 Jul 2007 08:06:48 -0000	1.8
  +++ XPathEvaluator.java	4 Sep 2007 06:42:26 -0000	1.9
   <at>  <at>  -54,7 +54,7  <at>  <at> 

   /**
    *  <at> author Alejandro Guizar
  - *  <at> version $Revision: 1.8 $ $Date: 2007/07/26 08:06:48 $
  + *  <at> version $Revision: 1.9 $ $Date: 2007/09/04 06:42:26 $
    */
   abstract class XPathEvaluator extends BaseXPath {

(Continue reading)

Alex Guizar | 4 Sep 2007 08:42

[jbpm-cvs] jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/endpointref/wsa ...

  User: aguizar 
  Date: 07/09/04 02:42:27

  Modified:    bpel/library/src/main/java/org/jbpm/bpel/endpointref/wsa 
                        WsaEndpointReference.java
  Log:
  BPEL-190 introduced utility methods to get the value of an attribute or an element as a qname

  Revision  Changes    Path
  1.4       +18 -21    jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/endpointref/wsa/WsaEndpointReference.java

  (In the diff below, changes in quantity of whitespace are not shown.)

  Index: WsaEndpointReference.java
  ===================================================================
  RCS file: /cvsroot/jbpm/jbpm.3/bpel/library/src/main/java/org/jbpm/bpel/endpointref/wsa/WsaEndpointReference.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- WsaEndpointReference.java	11 Apr 2007 06:37:35 -0000	1.3
  +++ WsaEndpointReference.java	4 Sep 2007 06:42:27 -0000	1.4
   <at>  <at>  -25,55 +25,52  <at>  <at> 

   /**
    *  <at> author Alejandro Guízar
  - *  <at> version $Revision: 1.3 $ $Date: 2007/04/11 06:37:35 $
  + *  <at> version $Revision: 1.4 $ $Date: 2007/09/04 06:42:27 $
    */
   public class WsaEndpointReference extends SoapEndpointReference {

(Continue reading)


Gmane