You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by am...@apache.org on 2013/05/21 21:58:14 UTC

svn commit: r1484922 - /airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/security/local/LocalUserStore.java

Author: amilaj
Date: Tue May 21 19:58:14 2013
New Revision: 1484922

URL: http://svn.apache.org/r1484922
Log:
Correcting table name to have the same case as in the script

Modified:
    airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/security/local/LocalUserStore.java

Modified: airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/security/local/LocalUserStore.java
URL: http://svn.apache.org/viewvc/airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/security/local/LocalUserStore.java?rev=1484922&r1=1484921&r2=1484922&view=diff
==============================================================================
--- airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/security/local/LocalUserStore.java (original)
+++ airavata/trunk/modules/rest/service/src/main/java/org/apache/airavata/services/registry/rest/security/local/LocalUserStore.java Tue May 21 19:58:14 2013
@@ -67,7 +67,7 @@ public class LocalUserStore {
 
     public void addUser(String userName, String password) {
 
-        String sql = "insert into users values (?, ?)";
+        String sql = "insert into Users values (?, ?)";
 
         Connection connection = null;
         PreparedStatement preparedStatement = null;
@@ -106,7 +106,7 @@ public class LocalUserStore {
 
     protected String getPassword(String userName, Connection connection) {
 
-        String sql = "select password from users where user_name = ?";
+        String sql = "select password from Users where user_name = ?";
 
         PreparedStatement preparedStatement = null;
         ResultSet resultSet = null;
@@ -170,7 +170,7 @@ public class LocalUserStore {
                 }
             }
 
-            String sql = "update users set password = ? where user_name = ?";
+            String sql = "update Users set password = ? where user_name = ?";
 
             preparedStatement = connection.prepareStatement(sql);
 
@@ -210,7 +210,7 @@ public class LocalUserStore {
         try {
             connection = dbUtil.getConnection();
 
-            String sql = "update users set password = ? where user_name = ?";
+            String sql = "update Users set password = ? where user_name = ?";
 
             preparedStatement = connection.prepareStatement(sql);
 
@@ -244,7 +244,7 @@ public class LocalUserStore {
 
     public void deleteUser(String userName) {
 
-        String sql = "delete from users where user_name=?";
+        String sql = "delete from Users where user_name=?";
 
         Connection connection = null;
         PreparedStatement preparedStatement = null;
@@ -278,7 +278,7 @@ public class LocalUserStore {
 
         List<String> userList = new ArrayList<String>();
 
-        String sql = "select user_name from users";
+        String sql = "select user_name from Users";
 
         PreparedStatement preparedStatement = null;
         ResultSet resultSet = null;
@@ -296,7 +296,7 @@ public class LocalUserStore {
             }
 
         } catch (SQLException e) {
-            String errorString = "Error retrieving users.";
+            String errorString = "Error retrieving Users.";
             log.error(errorString, e);
 
             throw new RuntimeException(errorString, e);