Search in sources :

Example 91 with User

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

Example 92 with User

use of com.google.api.ads.admanager.axis.v202205.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.v202108.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202108.User) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder) UserPage(com.google.api.ads.admanager.axis.v202108.UserPage)

Example 93 with User

use of com.google.api.ads.admanager.axis.v202205.User in project kripton by xcesco.

the class Test209Model1Runtime method testRunSqlite1.

/**
 * Test run sqlite 1.
 */
@Test
public void testRunSqlite1() {
    BindApp1DataSource ds = BindApp1DataSource.getInstance();
    ds.execute(new Transaction() {

        @Override
        public TransactionResult onExecute(BindApp1DaoFactory daoFactory) {
            Device device = new Device();
            device.name = "device-test";
            daoFactory.getDeviceDao().insert(device);
            User user = new User();
            user.userName = "user-test";
            daoFactory.getUserDao().insert(user);
            UserDevice userDevice = new UserDevice(0, user.id, device.id);
            daoFactory.getUserDeviceDao().insert(userDevice);
            List<Device> devices = daoFactory.getDeviceDao().getUserDevices(user.id);
            Assert.assertTrue(devices.size() == 1);
            return TransactionResult.ROLLBACK;
        }
    });
}
Also used : TransactionResult(com.abubusoft.kripton.android.sqlite.TransactionResult) User(sqlite.kripton209.model1.User) Transaction(sqlite.kripton209.model1.BindApp1DataSource.Transaction) BindApp1DataSource(sqlite.kripton209.model1.BindApp1DataSource) BindApp1DaoFactory(sqlite.kripton209.model1.BindApp1DaoFactory) UserDevice(sqlite.kripton209.model1.UserDevice) Device(sqlite.kripton209.model1.Device) List(java.util.List) UserDevice(sqlite.kripton209.model1.UserDevice) Test(org.junit.Test) BaseAndroidTest(base.BaseAndroidTest)

Example 94 with User

use of com.google.api.ads.admanager.axis.v202205.User in project kripton by xcesco.

the class TestCustomBeanRuntime method testCompile.

@Test
public void testCompile() throws InterruptedException {
    BindAppDataSource dataSource = BindAppDataSource.getInstance();
    dataSource.execute(new Transaction() {

        @Override
        public TransactionResult onExecute(BindAppDaoFactory daoFactory) {
            User user = createUser(daoFactory);
            Book book = createBook(daoFactory);
            insertLoan(daoFactory, user, book);
            // insertLoan(daoFactory, user, book);
            return TransactionResult.COMMIT;
        }

        private void insertLoan(BindAppDaoFactory daoFactory, User user, Book book) {
            Loan loan = new Loan();
            loan.id = UUID.randomUUID().toString();
            loan.bookId = book.id;
            loan.userId = user.id;
            loan.startTime = new Date();
            daoFactory.getLoanDao().insertLoan(loan);
        }

        private Book createBook(BindAppDaoFactory daoFactory) {
            Book book = new Book();
            book.id = UUID.randomUUID().toString();
            book.title = "Never Ending Story #" + (counter++);
            daoFactory.getBookDao().insertBook(book);
            return book;
        }

        private User createUser(BindAppDaoFactory daoFactory) {
            User user = new User();
            user.id = UUID.randomUUID().toString();
            user.age = 24;
            user.name = "Fox";
            user.lastName = "Mulder";
            daoFactory.getUserDao().insertUser(user);
            return user;
        }
    });
    dataSource.getLoanDao().findAllWithUserAndBook().observeForever(new Observer<List<LoanWithUserAndBook>>() {

        @Override
        public void onChanged(List<LoanWithUserAndBook> t) {
            assertTrue(t.size() == 1);
            LoanWithUserAndBook bean = t.get(0);
            log("Found %s elements", t.size());
            assertTrue(bean.bookTitle != null);
            assertTrue(bean.userName != null);
            assertTrue(bean.startTime != null);
            assertTrue(bean.id != null);
        }
    });
    KriptonLibrary.getExecutorService().awaitTermination(4, TimeUnit.SECONDS);
}
Also used : TransactionResult(com.abubusoft.kripton.android.sqlite.TransactionResult) User(sqlite.feature.custombean.case1.User) Date(java.util.Date) LoanWithUserAndBook(sqlite.feature.custombean.case1.LoanWithUserAndBook) Transaction(sqlite.feature.custombean.case1.BindAppDataSource.Transaction) Loan(sqlite.feature.custombean.case1.Loan) BindAppDataSource(sqlite.feature.custombean.case1.BindAppDataSource) Book(sqlite.feature.custombean.case1.Book) LoanWithUserAndBook(sqlite.feature.custombean.case1.LoanWithUserAndBook) BindAppDaoFactory(sqlite.feature.custombean.case1.BindAppDaoFactory) List(java.util.List) Test(org.junit.Test) BaseAndroidTest(base.BaseAndroidTest)

Example 95 with User

use of com.google.api.ads.admanager.axis.v202205.User in project kripton by xcesco.

the class TestCustomBeanRuntime2 method testCompile.

@Test
public void testCompile() throws InterruptedException {
    BindAppDataSource dataSource = BindAppDataSource.build(DataSourceOptions.builder().inMemory(true).populator(new DataSourcePopulator()).build());
    dataSource.execute(new Transaction() {

        @Override
        public TransactionResult onExecute(BindAppDaoFactory daoFactory) {
            User user = createUser(daoFactory);
            Book book = createBook(daoFactory);
            insertLoan(daoFactory, user, book);
            // insertLoan(daoFactory, user, book);
            return TransactionResult.COMMIT;
        }

        private void insertLoan(BindAppDaoFactory daoFactory, User user, Book book) {
            Loan loan = new Loan();
            loan.id = UUID.randomUUID().toString();
            loan.bookId = book.id;
            loan.userId = user.id;
            loan.startTime = new Date();
            daoFactory.getLoanDao().insertLoan(loan);
        }

        private Book createBook(BindAppDaoFactory daoFactory) {
            Book book = new Book();
            book.id = UUID.randomUUID().toString();
            book.title = "Never Ending Story #" + (counter++);
            daoFactory.getBookDao().insertBook(book);
            return book;
        }

        private User createUser(BindAppDaoFactory daoFactory) {
            User user = new User();
            user.id = UUID.randomUUID().toString();
            user.age = 24;
            user.name = "Fox";
            user.lastName = "Mulder";
            daoFactory.getUserDao().insertUser(user);
            return user;
        }
    });
    dataSource.getLoanDao().findAllWithUserAndBook().observeForever(new Observer<List<LoanWithUserAndBook>>() {

        @Override
        public void onChanged(List<LoanWithUserAndBook> t) {
            assertTrue(t.size() > 0);
            LoanWithUserAndBook bean = t.get(0);
            log("Found %s elements", t.size());
            assertTrue(bean.bookTitle != null);
            assertTrue(bean.userName != null);
            assertTrue(bean.startTime != null);
            assertTrue(bean.id != null);
        }
    });
    KriptonLibrary.getExecutorService().awaitTermination(4, TimeUnit.SECONDS);
}
Also used : TransactionResult(com.abubusoft.kripton.android.sqlite.TransactionResult) User(sqlite.feature.custombean.case2.User) Date(java.util.Date) LoanWithUserAndBook(sqlite.feature.custombean.case2.LoanWithUserAndBook) Transaction(sqlite.feature.custombean.case2.BindAppDataSource.Transaction) Loan(sqlite.feature.custombean.case2.Loan) BindAppDataSource(sqlite.feature.custombean.case2.BindAppDataSource) LoanWithUserAndBook(sqlite.feature.custombean.case2.LoanWithUserAndBook) Book(sqlite.feature.custombean.case2.Book) BindAppDaoFactory(sqlite.feature.custombean.case2.BindAppDaoFactory) List(java.util.List) DataSourcePopulator(sqlite.feature.custombean.case2.DataSourcePopulator) BaseAndroidTest(base.BaseAndroidTest) Test(org.junit.Test)

Aggregations

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