public static String getUUID(String username) {
Downloadable downloadable = new Downloadable("https://api.mojang.com/users/profiles/minecraft/" + username,
false);
ProfileResponse profile = Gsons.DEFAULT.fromJson(downloadable.getContents(), ProfileResponse.class);
return profile.getId();
}