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

io.sphere.sdk.channels.expansion.ChannelExpansionModel Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.channels.expansion;

import io.sphere.sdk.channels.Channel;
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 ChannelExpansionModel extends ExpansionPathContainer {

    static ChannelExpansionModel of() {
        return new ChannelExpansionModelImpl<>();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy