public static List<Object[]> showVandalismByTitle(String title)
     throws ClientHandlerException, UniformInterfaceException, JSONException, URISyntaxException {
   List<Object[]> vandalismAndCount = new ArrayList<Object[]>();
   vandalismAndCount = GenerateTxt.showVandalism("title", title);
   return vandalismAndCount;
 }
 public static List<Object[]> showAllVandalism()
     throws ClientHandlerException, UniformInterfaceException, JSONException, URISyntaxException {
   List<Object[]> vandalismAndCount = new ArrayList<Object[]>();
   vandalismAndCount = GenerateTxt.showVandalism("all", null);
   return vandalismAndCount;
 }