public static String repeat(String value, int count) {
   return StringUtils.repeat(value, count);
 }