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

io.sphere.sdk.customergroups.queries.CustomerGroupByIdFetch Maven / Gradle / Ivy

There is a newer version: 1.0.0-M12
Show newest version
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