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:
Wu Liu
2014-10-22 12:25:46 +08:00
parent ce0f25a5c3
commit 9ab70dfd1c

View File

@@ -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 {