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

io.sphere.sdk.customers.queries.CustomerFetchById Maven / Gradle / Ivy

There is a newer version: 1.0.0-M12
Show newest version
package io.sphere.sdk.customers.queries;

import io.sphere.sdk.customers.Customer;
import io.sphere.sdk.queries.FetchByIdImpl;

public class CustomerFetchById extends FetchByIdImpl {
    private CustomerFetchById(final String id) {
        super(id, CustomersEndpoint.ENDPOINT);
    }

    public static CustomerFetchById of(final String id) {
        return new CustomerFetchById(id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy