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: 1.0.0-M26
Show newest version
package io.sphere.sdk.channels.expansion;

import io.sphere.sdk.channels.Channel;
import io.sphere.sdk.expansion.ExpansionModel;

/**
  DSL class to create expansion path expressions.

 @param  the type for which the expansion path is
 */
public class ChannelExpansionModel extends ExpansionModel {
    public ChannelExpansionModel(final String parentPath, final String path) {
        super(parentPath, path);
    }

    ChannelExpansionModel() {
        super();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy