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

io.sphere.sdk.customergroups.expansion.CustomerGroupExpansionModel Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.customergroups.expansion;

import io.sphere.sdk.customergroups.CustomerGroup;
import io.sphere.sdk.expansion.ExpansionPathContainer;

import java.util.List;

/**
 DSL class to create expansion path expressions.

 @param  the type for which the expansion path is
 */
public interface CustomerGroupExpansionModel extends ExpansionPathContainer {
    static CustomerGroupExpansionModel of() {
        return new CustomerGroupExpansionModelImpl<>();
    }

    static  CustomerGroupExpansionModel of(final List parentPath, final String path) {
        return new CustomerGroupExpansionModelImpl<>(parentPath, path);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy