TDI-30896 : password is not encryted for resume log
Add this one to avoid potential bugs that I don't know so far.
This commit is contained in:
@@ -328,8 +328,7 @@ public class ResumeUtil {
|
||||
return str;
|
||||
}
|
||||
|
||||
// Util: convert the context variable to json style text.
|
||||
// feature:11296
|
||||
// to support encrypt the password in the resume
|
||||
public static String convertToJsonText(Object context, List<String> parametersToEncrypt) {
|
||||
String jsonText = "";
|
||||
try {
|
||||
@@ -354,6 +353,13 @@ public class ResumeUtil {
|
||||
return jsonText;
|
||||
}
|
||||
|
||||
// Util: convert the context variable to json style text.
|
||||
// feature:11296
|
||||
// @Deprecated
|
||||
public static String convertToJsonText(Object context) {
|
||||
return convertToJsonText(context, null);
|
||||
}
|
||||
|
||||
// 7 fields
|
||||
public class ResumeCommonInfo {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user