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

io.sphere.sdk.channels.commands.ChannelCreateCommandImpl Maven / Gradle / Ivy

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

import io.sphere.sdk.channels.Channel;
import io.sphere.sdk.channels.ChannelDraft;
import io.sphere.sdk.channels.expansion.ChannelExpansionModel;
import io.sphere.sdk.commands.MetaModelCreateCommandBuilder;
import io.sphere.sdk.commands.MetaModelCreateCommandImpl;

final class ChannelCreateCommandImpl extends MetaModelCreateCommandImpl> implements ChannelCreateCommand {
    ChannelCreateCommandImpl(final MetaModelCreateCommandBuilder> builder) {
        super(builder);
    }

    ChannelCreateCommandImpl(final ChannelDraft body) {
        super(body, ChannelEndpoint.ENDPOINT, ChannelExpansionModel.of(), ChannelCreateCommandImpl::new);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy