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

com.braintreegateway.DiscountGateway Maven / Gradle / Ivy

The newest version!
package com.braintreegateway;

import com.braintreegateway.util.Http;
import com.braintreegateway.util.NodeWrapper;
import java.util.ArrayList;
import java.util.List;

public class DiscountGateway {
    private Http http;
    private Configuration configuration;

    public DiscountGateway(Http http, Configuration configuration) {
        this.http = http;
        this.configuration = configuration;
    }

    public List all() {
        NodeWrapper node = http.get(configuration.getMerchantPath() + "/discounts");

        List discounts = new ArrayList();

        for (NodeWrapper discountResponse : node.findAll("discount")) {
            discounts.add(new Discount(discountResponse));
        }

        return discounts;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy