Author: gatfora
Date: Mon Feb  4 11:37:11 2008
New Revision: 618392

URL: http://svn.apache.org/viewvc?rev=618392&view=rev
Log:
Applying patch for SANDESHA2-137

Modified:
    
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/InvokerBean.java
    
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMDBean.java
    
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSBean.java
    
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSequenceBean.java
    
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/SenderBean.java

Modified: 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/InvokerBean.java
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/InvokerBean.java?rev=618392&r1=618391&r2=618392&view=diff
==============================================================================
--- 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/InvokerBean.java
 (original)
+++ 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/InvokerBean.java
 Mon Feb  4 11:37:11 2008
@@ -61,7 +61,7 @@
         * be ignored within the match method.
         */
        private int flags = 0;
-       private static final int MSG_NO_FLAG  = 0x00000001;     
+       public static final int MSG_NO_FLAG  = 0x00000001;      
        
        public InvokerBean() {
 

Modified: 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMDBean.java
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMDBean.java?rev=618392&r1=618391&r2=618392&view=diff
==============================================================================
--- 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMDBean.java
 (original)
+++ 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMDBean.java
 Mon Feb  4 11:37:11 2008
@@ -81,8 +81,8 @@
         * be ignored within the match method.
         */
        private int rmdFlags = 0;
-       private static final int NEXT_MSG_NO_FLAG    = 0x00000001;
-       private static final int HIGHEST_IN_MSG_FLAG = 0x00000010;
+       public static final int NEXT_MSG_NO_FLAG    = 0x00000001;
+       public static final int HIGHEST_IN_MSG_FLAG = 0x00000010;
 
        public RMDBean() {
        }

Modified: 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSBean.java
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSBean.java?rev=618392&r1=618391&r2=618392&view=diff
==============================================================================
--- 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSBean.java
 (original)
+++ 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSBean.java
 Mon Feb  4 11:37:11 2008
@@ -152,17 +152,17 @@
         * be ignored within the match method.
         */
        private int rmsFlags = 0;
-       private static final int LAST_SEND_ERROR_TIME_FLAG = 0x00000001;
-       private static final int LAST_OUT_MSG_FLAG         = 0x00000010;
-       private static final int HIGHEST_OUT_MSG_FLAG      = 0x00000100;
-       private static final int NEXT_MSG_NUM_FLAG         = 0x00001000;
-       private static final int TERMINATE_ADDED_FLAG      = 0x00010000;
-       private static final int TIMED_OUT_FLAG            = 0x00100000;
-       private static final int SEQ_CLOSED_CLIENT_FLAG    = 0x01000000;
-       private static final int ACKED_MESSAGES_FLAG       = 0x10000000;
-       private static final int TERM_PAUSER_FOR_CS        = 0x00000002;
-       private static final int EXPECTED_REPLIES          = 0x00000020;
-       private static final int SOAP_VERSION_FLAG         = 0x00000200;
+       public static final int LAST_SEND_ERROR_TIME_FLAG = 0x00000001;
+       public static final int LAST_OUT_MSG_FLAG         = 0x00000010;
+       public static final int HIGHEST_OUT_MSG_FLAG      = 0x00000100;
+       public static final int NEXT_MSG_NUM_FLAG         = 0x00001000;
+       public static final int TERMINATE_ADDED_FLAG      = 0x00010000;
+       public static final int TIMED_OUT_FLAG            = 0x00100000;
+       public static final int SEQ_CLOSED_CLIENT_FLAG    = 0x01000000;
+       public static final int ACKED_MESSAGES_FLAG       = 0x10000000;
+       public static final int TERM_PAUSER_FOR_CS        = 0x00000002;
+       public static final int EXPECTED_REPLIES          = 0x00000020;
+       public static final int SOAP_VERSION_FLAG         = 0x00000200;
        
        public RMSBean() {
        }

Modified: 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSequenceBean.java
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSequenceBean.java?rev=618392&r1=618391&r2=618392&view=diff
==============================================================================
--- 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSequenceBean.java
 (original)
+++ 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/RMSequenceBean.java
 Mon Feb  4 11:37:11 2008
@@ -88,10 +88,10 @@
         * be ignored within the match method.
         */
        private int flags = 0;
-       private static final int LAST_ACTIVATED_TIME_FLAG    = 0x00000001;
-       private static final int CLOSED_FLAG                 = 0x00000010;
-       private static final int TERMINATED_FLAG             = 0x00000100;
-       private static final int POLLING_MODE_FLAG           = 0x00001000;
+       public static final int LAST_ACTIVATED_TIME_FLAG    = 0x00000001;
+       public static final int CLOSED_FLAG                 = 0x00000010;
+       public static final int TERMINATED_FLAG             = 0x00000100;
+       public static final int POLLING_MODE_FLAG           = 0x00001000;
 
        public RMSequenceBean() {
 

Modified: 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/SenderBean.java
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/SenderBean.java?rev=618392&r1=618391&r2=618392&view=diff
==============================================================================
--- 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/SenderBean.java
 (original)
+++ 
webservices/sandesha/trunk/java/modules/core/src/main/java/org/apache/sandesha2/storage/beans/SenderBean.java
 Mon Feb  4 11:37:11 2008
@@ -128,15 +128,15 @@
         * be ignored within the match method.
         */
        private int flags = 0;
-       private static final int SEND_FLAG         = 0x00000001;
-       private static final int SEND_COUNT_FLAG   = 0x00000010;
-       private static final int MSG_NUMBER_FLAG   = 0x00000100;
-       private static final int RESEND_FLAG       = 0x00001000;
-       private static final int TIME_TO_SEND_FLAG = 0x00010000;
-       private static final int MSG_TYPE_FLAG     = 0x00100000;
-       private static final int LAST_MSG_FLAG     = 0x01000000;
-       private static final int IN_MSG_NUM_FLAG   = 0x10000000;
-       private static final int TRANSPORT_FLAG    = 0x00000002;
+       public static final int SEND_FLAG         = 0x00000001;
+       public static final int SEND_COUNT_FLAG   = 0x00000010;
+       public static final int MSG_NUMBER_FLAG   = 0x00000100;
+       public static final int RESEND_FLAG       = 0x00001000;
+       public static final int TIME_TO_SEND_FLAG = 0x00010000;
+       public static final int MSG_TYPE_FLAG     = 0x00100000;
+       public static final int LAST_MSG_FLAG     = 0x01000000;
+       public static final int IN_MSG_NUM_FLAG   = 0x10000000;
+       public static final int TRANSPORT_FLAG    = 0x00000002;
 
        public SenderBean() {
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to