Remove Password from Logging 37/30937/1
authorguangxingwang <gw1218@att.com>
Thu, 8 Feb 2018 23:11:34 +0000 (17:11 -0600)
committerguangxingwang <gw1218@att.com>
Thu, 8 Feb 2018 23:11:47 +0000 (17:11 -0600)
Fix Fortify logging issue

Issue-ID: POLICY-544
Change-Id: Ibfc7665dcab229a705ec3f999545b14675c24430
Signed-off-by: guangxingwang <gw1218@att.com>
ONAP-PAP-REST/src/main/java/org/onap/policy/pap/xacml/rest/elk/client/ElasticSearchPolicyUpdate.java
POLICY-SDK-APP/src/main/webapp/app/policyApp/Windows/Dictionary/ModelAttributeDictionary.html

index 430f9cd..d064d05 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP Policy Engine
  * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -96,8 +96,7 @@ public class ElasticSearchPolicyUpdate {
                                        password = config.getProperty("policy.database.password");
                                        databaseDriver = config.getProperty("policy.database.driver");
                                        if(elkURL == null || databseUrl == null || userName == null || password == null || databaseDriver == null){
-                                               LOGGER.error("One of the Property is null in policyelk.properties = elkurl:databaseurl:username:password:databasedriver  " 
-                                                               + elkURL + ":"+ databseUrl + ":"+ userName + ":"+ password + ":"+ databaseDriver + ":");
+                                               LOGGER.error("please check the elk configuration");
                                        }
                                } catch (Exception e) {
                                        LOGGER.error("Config File doesn't Exist in the specified Path " + file.toString(),e);
index 0531a00..9f8af5c 100644 (file)
                        <div class="form-group row">
            <div class="form-group col-sm-6" ng-class="{ 'has-error' : formdata.name.$invalid && !formdata.name.$pristine }" >
                 <label>Enter Dictionary Name:<sup><b>*</b></sup></label><br>
-                <input type="text"  ng-model="editModelAttribute.name" class="form-control" name= "name"  required/>
+                <input type="text"  ng-model="editModelAttribute.name" class="form-control" name= "name"   required="true"/>
                                <p ng-show="formdata.name.$invalid && !formdata.name.$pristine" class="help-block">Dictionary Name is required.</p>
             </div>
             </div>
                        <div class="form-group row">
             <div class="form-group col-sm-6" ng-class="{ 'has-error' : formdata.value.$invalid && !formdata.value.$pristine }">
                 <label>Enter Value:<sup><b>*</b></sup></label><br>
-                <input type="text" ng-model="editModelAttribute.value" class="form-control" name= "value"  required"/>
+                <input type="text" ng-model="editModelAttribute.value" class="form-control" name= "value"   required="true"/>
                                <p ng-show="formdata.value.$invalid && !formdata.value.$pristine" class="help-block">Value is required.</p>
             </div>
                        </div>