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

io.sphere.sdk.customergroups.queries.CustomerGroupFetchById 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.FetchByIdImpl;

import static io.sphere.sdk.customergroups.queries.CustomerGroupEndpoint.ENDPOINT;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy