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

com.dft.bigcommerce.BigcommerceCustomerAddresses Maven / Gradle / Ivy

package com.dft.bigcommerce;

import com.dft.bigcommerce.handler.JsonBodyHandler;
import com.dft.bigcommerce.model.credentials.BigcommerceCredentials;
import com.dft.bigcommerce.model.customer.customerAddresses.CustomerAddressesWrapper;
import lombok.SneakyThrows;
import java.net.URI;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;

public class BigcommerceCustomerAddresses extends BigcommerceSDK {

    private static final String FORWARD_SLASH_CHARACTER = "/";
    private static final String CUSTOMERS_ENDPOINT = "/customers";
    private static final String CUSTOMER_ADDRESSES_ENDPOINT = "addresses";

    public BigcommerceCustomerAddresses(BigcommerceCredentials credentials) {
        super(credentials);
    }

    @SneakyThrows
    public CustomerAddressesWrapper getAllCustomerAddress() {
        URI uri = baseUrlV2(CUSTOMERS_ENDPOINT + FORWARD_SLASH_CHARACTER
            + CUSTOMER_ADDRESSES_ENDPOINT);

        HttpRequest request = get(uri);
        HttpResponse.BodyHandler handler = new JsonBodyHandler<>(CustomerAddressesWrapper.class);
        return getRequestWrapped(request, handler);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy