io.sphere.sdk.customers.queries.CustomerFetchById Maven / Gradle / Ivy
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