io.sphere.sdk.channels.queries.ChannelByIdGet Maven / Gradle / Ivy
/*
This class has been generated by class io.sphere.sdk.annotations.processors.HasByIdGetEndpointAnnotationProcessor
induced by the annotation io.sphere.sdk.annotations.HasByIdGetEndpoint.
in the source class io.sphere.sdk.channels.Channel.
To render this class the handlebars template 'queries/byFieldGetInterface.hbs' has been used.
*/
package io.sphere.sdk.channels.queries;
import io.sphere.sdk.expansion.ExpansionPath;
import io.sphere.sdk.queries.MetaModelGetDsl;
import io.sphere.sdk.channels.Channel;
import io.sphere.sdk.channels.expansion.ChannelExpansionModel;
import io.sphere.sdk.models.Identifiable;
import java.util.List;
/**
* Fetches a channel by a known ID.
{@include.example io.sphere.sdk.channels.queries.ChannelByIdGetIntegrationTest#execution() }
*/
public interface ChannelByIdGet extends MetaModelGetDsl> {
static ChannelByIdGet of(final String id) {
return new ChannelByIdGetImpl(id);
}
static ChannelByIdGet of(final Identifiable resource) {
return of(resource.getId());
}
@Override
List> expansionPaths();
@Override
ChannelByIdGet plusExpansionPaths(final ExpansionPath expansionPath);
@Override
ChannelByIdGet withExpansionPaths(final ExpansionPath expansionPath);
@Override
ChannelByIdGet withExpansionPaths(final List> expansionPaths);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy