io.sphere.sdk.channels.commands.ChannelCreateCommand Maven / Gradle / Ivy
The newest version!
/*
This class has been generated by class io.sphere.sdk.annotations.processors.CreateCommandEndpointAnnotationProcessor
induced by the annotation io.sphere.sdk.annotations.HasCreateCommand.
in the source class io.sphere.sdk.channels.Channel.
To render this class the handlebars template 'commands/createCommandInterface.hbs' has been used.
*/
package io.sphere.sdk.channels.commands;
import io.sphere.sdk.commands.DraftBasedCreateCommandDsl;
import io.sphere.sdk.expansion.MetaModelReferenceExpansionDsl;
import io.sphere.sdk.channels.Channel;
import io.sphere.sdk.channels.ChannelDraft;
import io.sphere.sdk.channels.expansion.ChannelExpansionModel;
/**
Creates a channel.
Example:
{@include.example io.sphere.sdk.channels.commands.ChannelCreateCommandIntegrationTest#execution()}
Example for creation a channel with custom fields:
{@include.example io.sphere.sdk.channels.ChannelCustomFieldsIntegrationTest#createChannelWithCustomType()}
@see ChannelDraft
@see Channel
*/
public interface ChannelCreateCommand extends DraftBasedCreateCommandDsl, MetaModelReferenceExpansionDsl> {
/**
Creates a command object to create a {@link Channel}.
@param draft template to create the new object
@return a new create command
*/
static ChannelCreateCommand of(final ChannelDraft draft) {
return new ChannelCreateCommandImpl(draft);
}
}