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

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

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

import io.sphere.sdk.customers.Customer;
import io.sphere.sdk.customers.expansion.CustomerExpansionModel;
import io.sphere.sdk.models.Identifiable;
import io.sphere.sdk.expansion.ExpansionPath;
import io.sphere.sdk.queries.MetaModelGetDsl;

import java.util.List;
import java.util.function.Function;

/**
 * Fetches a customer by a known ID.
 *
 * {@include.example io.sphere.sdk.customers.queries.CustomerByIdGetTest#execution()}
 */
public interface CustomerByIdGet extends MetaModelGetDsl> {
    static CustomerByIdGet of(final Identifiable customer) {
        return of(customer.getId());
    }

    static CustomerByIdGet of(final String id) {
        return new CustomerByIdGetImpl(id);
    }

    @Override
    CustomerByIdGet plusExpansionPaths(final Function, ExpansionPath> m);

    @Override
    CustomerByIdGet withExpansionPaths(final Function, ExpansionPath> m);

    @Override
    List> expansionPaths();

    @Override
    CustomerByIdGet plusExpansionPaths(final ExpansionPath expansionPath);

    @Override
    CustomerByIdGet withExpansionPaths(final ExpansionPath expansionPath);

    @Override
    CustomerByIdGet withExpansionPaths(final List> expansionPaths);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy