You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/01/03 22:34:36 UTC

svn commit: r1054771 - in /cxf/branches/2.3.x-fixes: ./ rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java

Author: dkulp
Date: Mon Jan  3 21:34:36 2011
New Revision: 1054771

URL: http://svn.apache.org/viewvc?rev=1054771&view=rev
Log:
Merged revisions 1042803 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1042803 | dkulp | 2010-12-06 16:40:18 -0500 (Mon, 06 Dec 2010) | 2 lines
  
  Make a few methods public to allow it to be used easier without the
  spring config
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java?rev=1054771&r1=1054770&r2=1054771&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java (original)
+++ cxf/branches/2.3.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java Mon Jan  3 21:34:36 2011
@@ -150,7 +150,7 @@ public class RMTxStore implements RMStor
         driverClassName = dcn;
     }
     
-    String getDriverClassName() {
+    public String getDriverClassName() {
         return driverClassName;
     }
 
@@ -158,7 +158,7 @@ public class RMTxStore implements RMStor
         password = p;
     }
     
-    String getPassword() {
+    public String getPassword() {
         return password;
     }
     
@@ -166,7 +166,7 @@ public class RMTxStore implements RMStor
         url = u;
     }
     
-    String getUrl() {
+    public String getUrl() {
         return url;
     }
 
@@ -174,7 +174,7 @@ public class RMTxStore implements RMStor
         userName = un;
     }
     
-    String getUserName() {
+    public String getUserName() {
         return userName;
     }    
    
@@ -581,7 +581,7 @@ public class RMTxStore implements RMStor
     }
     
     @PostConstruct     
-    synchronized void init() {
+    public synchronized void init() {
         
         if (null == connection) {
             LOG.log(Level.FINE, "Using derby.system.home: {0}", System.getProperty("derby.system.home"));