Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / common / util / CryptoHandler.java
index 0fd0d92..dc2b3be 100644 (file)
  */
 
 package org.onap.so.bpmn.common.util;
+
 import java.io.IOException;
 import java.security.GeneralSecurityException;
 import java.util.Properties;
 import org.onap.so.utils.CryptoUtils;
-
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 public class CryptoHandler implements ICryptoHandler {
-       private static final Logger logger = LoggerFactory.getLogger(CryptoHandler.class);
-       private static final String GENERAL_SECURITY_EXCEPTION_PREFIX = "GeneralSecurityException :";
-       private static final String MSO_KEY = "aa3871669d893c7fb8abbcda31b88b4f";
-       private static final String PROPERTY_KEY = "mso.AaiEncrypted.Pwd";
+    private static final Logger logger = LoggerFactory.getLogger(CryptoHandler.class);
+    private static final String GENERAL_SECURITY_EXCEPTION_PREFIX = "GeneralSecurityException :";
+    private static final String MSO_KEY = "aa3871669d893c7fb8abbcda31b88b4f";
+    private static final String PROPERTY_KEY = "mso.AaiEncrypted.Pwd";
 
     @Override
-       public String getMsoAaiPassword() {
-       Properties keyProp = new Properties ();
-               try {
-                       keyProp.load (Thread.currentThread ().getContextClassLoader ().getResourceAsStream ("urn.properties"));
-                       return CryptoUtils.decrypt((String) keyProp.get(PROPERTY_KEY), MSO_KEY);
-               } catch (GeneralSecurityException | IOException e) {
-                       logger.error(GENERAL_SECURITY_EXCEPTION_PREFIX + e.getMessage(), e);
-                       return null;
-               }
-       }
+    public String getMsoAaiPassword() {
+        Properties keyProp = new Properties();
+        try {
+            keyProp.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("urn.properties"));
+            return CryptoUtils.decrypt((String) keyProp.get(PROPERTY_KEY), MSO_KEY);
+        } catch (GeneralSecurityException | IOException e) {
+            logger.error(GENERAL_SECURITY_EXCEPTION_PREFIX + e.getMessage(), e);
+            return null;
+        }
+    }
 
 
-       @Override
-       public String encryptMsoPassword(String plainMsoPwd) {
-               try {
-                       return CryptoUtils.encrypt(plainMsoPwd, MSO_KEY);
-               } catch (GeneralSecurityException e) {
-                       logger.error(GENERAL_SECURITY_EXCEPTION_PREFIX + e.getMessage(), e);
-                       return null;
-               }
-       }
+    @Override
+    public String encryptMsoPassword(String plainMsoPwd) {
+        try {
+            return CryptoUtils.encrypt(plainMsoPwd, MSO_KEY);
+        } catch (GeneralSecurityException e) {
+            logger.error(GENERAL_SECURITY_EXCEPTION_PREFIX + e.getMessage(), e);
+            return null;
+        }
+    }
 
-       @Override
-       public String decryptMsoPassword(String encryptedPwd) {
-               try {
-                       return CryptoUtils.decrypt(encryptedPwd, MSO_KEY);
-               } catch (GeneralSecurityException e) {
-                       logger.error(GENERAL_SECURITY_EXCEPTION_PREFIX + e.getMessage(), e);
-                       return null;
-               }
-       }
+    @Override
+    public String decryptMsoPassword(String encryptedPwd) {
+        try {
+            return CryptoUtils.decrypt(encryptedPwd, MSO_KEY);
+        } catch (GeneralSecurityException e) {
+            logger.error(GENERAL_SECURITY_EXCEPTION_PREFIX + e.getMessage(), e);
+            return null;
+        }
+    }
 }