io.sphere.sdk.customergroups.queries.CustomerGroupByIdFetch Maven / Gradle / Ivy
package io.sphere.sdk.customergroups.queries;
import io.sphere.sdk.customergroups.CustomerGroup;
import io.sphere.sdk.queries.ByIdFetchImpl;
import static io.sphere.sdk.customergroups.queries.CustomerGroupEndpoint.ENDPOINT;
public class CustomerGroupByIdFetch extends ByIdFetchImpl {
private CustomerGroupByIdFetch(final String id) {
super(id, ENDPOINT);
}
public static CustomerGroupByIdFetch of(final String id) {
return new CustomerGroupByIdFetch(id);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy