BasicAuthAccountServiceImpl: Sonar Issue 53/63053/1
authorArundathi Patil <arundpil@in.ibm.com>
Mon, 27 Aug 2018 11:29:11 +0000 (16:59 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Mon, 27 Aug 2018 11:29:25 +0000 (16:59 +0530)
Fixed sonar issue, correct "&" with this "&&"

Issue-ID: PORTAL-384
Change-Id: I019ed7d91b490366061bc581ab1e88abf819e824
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
ecomp-portal-BE-common/src/main/java/org/onap/portalapp/portal/service/BasicAuthAccountServiceImpl.java

index a2ff314..74cf172 100644 (file)
@@ -221,7 +221,7 @@ public class BasicAuthAccountServiceImpl implements BasicAuthAccountService{
        
        private String decryptedPassword(String encryptedPwd) throws Exception {
                String result = "";
-               if (encryptedPwd != null & encryptedPwd.length() > 0) {
+               if (encryptedPwd != null && encryptedPwd.length() > 0) {
                        try {
                                result = CipherUtil.decryptPKC(encryptedPwd,
                                                SystemProperties.getProperty(SystemProperties.Decryption_Key));
@@ -235,7 +235,7 @@ public class BasicAuthAccountServiceImpl implements BasicAuthAccountService{
 
        private String encryptedPassword(String decryptedPwd) throws Exception {
                String result = "";
-               if (decryptedPwd != null & decryptedPwd.length() > 0) {
+               if (decryptedPwd != null && decryptedPwd.length() > 0) {
                        try {
                                result = CipherUtil.encryptPKC(decryptedPwd,
                                                SystemProperties.getProperty(SystemProperties.Decryption_Key));