All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.braintreegateway.MerchantAccountPager Maven / Gradle / Ivy

The newest version!
package com.braintreegateway;

public class MerchantAccountPager implements SimplePager {
    private MerchantAccountGateway gateway;

    public MerchantAccountPager(MerchantAccountGateway gateway) {
        this.gateway = gateway;
    }

    public PaginatedResult getPage(int page) {
        return gateway.fetchMerchantAccounts(page);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy