remove quotes Java Props

Issue-ID: AAF-420
Change-Id: Id0c0ee18970db397063a47d4a41e7e794a20c3ea
Signed-off-by: Instrumental <jonathan.gathman@att.com>
diff --git a/auth/sample/bin/client.sh b/auth/sample/bin/client.sh
index c0eb219..a8b8b9a 100644
--- a/auth/sample/bin/client.sh
+++ b/auth/sample/bin/client.sh
@@ -119,7 +119,7 @@
 	    if [ "$ADD" = "Y" ]; then
 		echo $2 >> $F
 	    else 
-               sed -i.backup -e "s/\\(${1}.*=\\).*/\\1\"${2}\"/" $F
+               sed -i.backup -e "s/\\(${1}.*=\\).*/\\1${2}/" $F
 	    fi
             cat $F
         done
diff --git a/auth/sample/bin/service.sh b/auth/sample/bin/service.sh
index 8ce43fc..33dca67 100644
--- a/auth/sample/bin/service.sh
+++ b/auth/sample/bin/service.sh
@@ -92,7 +92,7 @@
 		echo "$1=$2" >> $F
 	    else 
 		VALUE=${2//\//\\\/}
-                sed -i.backup -e "s/\(${1}=\).*/\1\"${VALUE}\"/" $F
+                sed -i.backup -e "s/\(${1}=\).*/\1${VALUE}/" $F
 	    fi
             cat $F
         done