use of com.google.api.ads.admanager.axis.v202111.User in project Village_Defense by Plajer.
the class AdminCommands method addOrbs.
public void addOrbs(CommandSender sender, String number) {
if (!checkIsInGameInstance((Player) sender))
return;
if (!hasPermission(sender, "villagedefense.admin.addorbs"))
return;
if (NumberUtils.isNumber(number)) {
User user = UserManager.getUser(((Player) sender).getUniqueId());
user.setInt("orbs", user.getInt("orbs") + Integer.parseInt(number));
sender.sendMessage(ChatManager.PLUGIN_PREFIX + ChatManager.colorMessage("Commands.Admin-Commands.Added-Orbs"));
} else {
sender.sendMessage(ChatColor.RED + "Wrong usage. Do /villagedefense addorbs <amount>");
}
}
use of com.google.api.ads.admanager.axis.v202111.User in project Village_Defense by Plajer.
the class KitManager method checkIfIsUnlocked.
@EventHandler
public void checkIfIsUnlocked(VillagePlayerChooseKitEvent event) {
if (event.getKit().isUnlockedByPlayer(event.getPlayer())) {
User user = UserManager.getUser(event.getPlayer().getUniqueId());
user.setKit(event.getKit());
String chosenkitmessage = ChatManager.colorMessage("Kits.Choose-Message");
chosenkitmessage = ChatManager.formatMessage(chosenkitmessage, event.getKit());
event.getPlayer().sendMessage(chosenkitmessage);
} else {
String chosenKitMessageButNotUnlocked = ChatManager.colorMessage("Kits.Not-Unlocked-Message");
event.getPlayer().sendMessage(ChatManager.formatMessage(chosenKitMessageButNotUnlocked, event.getKit()));
}
}
use of com.google.api.ads.admanager.axis.v202111.User in project actframework by actframework.
the class GHIssue353 method testPost.
@Test
public void testPost() throws Exception {
url("/gh/353").accept(H.Format.JSON).postJSON(user);
String s = resp().body().string();
User user2 = JSON.parseObject(s, User.class);
eq(user.name, user2.name);
}
use of com.google.api.ads.admanager.axis.v202111.User in project googleads-java-lib by googleads.
the class UpdateUsers method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param userId the ID of the user to update.
* @throws ApiException if the API request failed with one or more service errors.
* @throws RemoteException if the API request failed due to other errors.
*/
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long userId) throws RemoteException {
// Get the UserService.
UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
// Create a statement to only select a single user by ID.
StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", userId);
// Get the user.
UserPage page = userService.getUsersByStatement(statementBuilder.toStatement());
User user = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
// Set the role of the user to a salesperson.
// To determine what other roles exist, run GetAllRoles.java.
user.setRoleId(-5L);
// Update the user on the server.
User[] users = userService.updateUsers(new User[] { user });
for (User updatedUser : users) {
System.out.printf("User with ID %d and name '%s' was updated.%n", updatedUser.getId(), updatedUser.getName());
}
}
use of com.google.api.ads.admanager.axis.v202111.User in project googleads-java-lib by googleads.
the class GetUserByEmailAddress method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param emailAddress the email address.
* @throws ApiException if the API request failed with one or more service errors.
* @throws RemoteException if the API request failed due to other errors.
*/
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, String emailAddress) throws RemoteException {
UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
// Create a statement to select users.
StatementBuilder statementBuilder = new StatementBuilder().where("email = :email").orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT).withBindVariableValue("email", emailAddress);
// Retrieve a small amount of users at a time, paging through
// until all users have been retrieved.
int totalResultSetSize = 0;
do {
UserPage page = userService.getUsersByStatement(statementBuilder.toStatement());
if (page.getResults() != null) {
// Print out some information for each user.
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (User user : page.getResults()) {
System.out.printf("%d) User with ID %d and name '%s' was found.%n", i++, user.getId(), user.getName());
}
}
statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
} while (statementBuilder.getOffset() < totalResultSetSize);
System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
Aggregations