Search in sources :

Example 76 with User

use of com.google.api.ads.admanager.axis.v202202.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>");
    }
}
Also used : Player(org.bukkit.entity.Player) User(pl.plajer.villagedefense3.User)

Example 77 with User

use of com.google.api.ads.admanager.axis.v202202.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()));
    }
}
Also used : User(pl.plajer.villagedefense3.User) EventHandler(org.bukkit.event.EventHandler)

Example 78 with User

use of com.google.api.ads.admanager.axis.v202202.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);
}
Also used : User(testapp.endpoint.ghissues.gh353.User) Test(org.junit.Test)

Example 79 with User

use of com.google.api.ads.admanager.axis.v202202.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());
    }
}
Also used : UserServiceInterface(com.google.api.ads.admanager.axis.v202202.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202202.User) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder) UserPage(com.google.api.ads.admanager.axis.v202202.UserPage)

Example 80 with User

use of com.google.api.ads.admanager.axis.v202202.User in project googleads-java-lib by googleads.

the class DeleteUserTeamAssociations method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param userId the ID of the user to delete user team associations for.
 * @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 UserTeamAssociationService.
    UserTeamAssociationServiceInterface userTeamAssociationService = adManagerServices.get(session, UserTeamAssociationServiceInterface.class);
    // Create a statement to get all user team associations for a user.
    StatementBuilder statementBuilder = new StatementBuilder().where("WHERE userId = :userId ").orderBy("userId ASC, teamid ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT).withBindVariableValue("userId", userId);
    // Default for total result set size.
    int totalResultSetSize = 0;
    do {
        // Get user team associations by statement.
        UserTeamAssociationPage page = userTeamAssociationService.getUserTeamAssociationsByStatement(statementBuilder.toStatement());
        if (page.getResults() != null) {
            totalResultSetSize = page.getTotalResultSetSize();
            int i = page.getStartIndex();
            for (UserTeamAssociation userTeamAssociation : page.getResults()) {
                System.out.printf("%d) User team association with user ID %d and " + "team ID %d will be deleted.%n", i++, userTeamAssociation.getUserId(), userTeamAssociation.getTeamId());
            }
        }
        statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
    } while (statementBuilder.getOffset() < totalResultSetSize);
    System.out.printf("Number of user team associations to be deleted: %d%n", totalResultSetSize);
    if (totalResultSetSize > 0) {
        // Remove limit and offset from statement.
        statementBuilder.removeLimitAndOffset();
        // Create action.
        com.google.api.ads.admanager.axis.v202202.DeleteUserTeamAssociations action = new com.google.api.ads.admanager.axis.v202202.DeleteUserTeamAssociations();
        // Perform action.
        UpdateResult result = userTeamAssociationService.performUserTeamAssociationAction(action, statementBuilder.toStatement());
        if (result != null && result.getNumChanges() > 0) {
            System.out.printf("Number of user team associations deleted: %d%n", result.getNumChanges());
        } else {
            System.out.println("No user team associations were deleted.");
        }
    }
}
Also used : UserTeamAssociationServiceInterface(com.google.api.ads.admanager.axis.v202202.UserTeamAssociationServiceInterface) UserTeamAssociation(com.google.api.ads.admanager.axis.v202202.UserTeamAssociation) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder) UserTeamAssociationPage(com.google.api.ads.admanager.axis.v202202.UserTeamAssociationPage) UpdateResult(com.google.api.ads.admanager.axis.v202202.UpdateResult)

Aggregations

User (pl.plajer.villagedefense3.User)30 Player (org.bukkit.entity.Player)18 User (org.gluu.oxtrust.model.scim2.User)17 EventHandler (org.bukkit.event.EventHandler)11 GluuCustomPerson (org.gluu.oxtrust.model.GluuCustomPerson)10 ScimPatchUser (org.gluu.oxtrust.model.scim2.ScimPatchUser)10 User (org.openstack4j.model.identity.v3.User)10 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder)8 DuplicateEntryException (org.gluu.site.ldap.exception.DuplicateEntryException)8 Arena (pl.plajer.villagedefense3.arena.Arena)8 ArrayList (java.util.ArrayList)7 User (me.zhanghai.android.douya.network.api.info.apiv2.User)7 EntryPersistenceException (org.gluu.site.ldap.persistence.exception.EntryPersistenceException)7 User (com.google.api.ads.admanager.axis.v202108.User)6 UserServiceInterface (com.google.api.ads.admanager.axis.v202108.UserServiceInterface)6 User (com.google.api.ads.admanager.axis.v202111.User)6 UserServiceInterface (com.google.api.ads.admanager.axis.v202111.UserServiceInterface)6 User (com.google.api.ads.admanager.axis.v202202.User)6 UserServiceInterface (com.google.api.ads.admanager.axis.v202202.UserServiceInterface)6 Date (java.util.Date)6