Copy prefixes and suffixes during migration processes

This commit is contained in:
Luck
2016-08-23 12:36:20 +01:00
Unverified
parent f7fa08d5e9
commit 9cd4e01d8e
6 changed files with 111 additions and 10 deletions
@@ -48,4 +48,12 @@ public class ArgumentChecker {
return DateUtil.shouldExpire(l);
}
public static String escapeCharacters(String s) {
s = s.replace(".", "{SEP}");
s = s.replace("/", "{FSEP}");
s = s.replace("$", "{DSEP}");
return s;
}
}