io.sphere.sdk.channels.expansion.ChannelExpansionModel Maven / Gradle / Ivy
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