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

com.braintreegateway.ExpiredCreditCardPager Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway;

import java.util.List;

public class ExpiredCreditCardPager implements Pager {

    private CreditCardGateway gateway;

    public ExpiredCreditCardPager(CreditCardGateway gateway) {
        this.gateway = gateway;
    }

    public List getPage(List ids) {
        return gateway.fetchExpiredCreditCards(ids);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy