io.sphere.sdk.channels.queries.ChannelByIdGet Maven / Gradle / Ivy
package io.sphere.sdk.channels.queries;
import io.sphere.sdk.channels.Channel;
import io.sphere.sdk.channels.expansion.ChannelExpansionModel;
import io.sphere.sdk.models.Identifiable;
import io.sphere.sdk.expansion.ExpansionPath;
import io.sphere.sdk.queries.MetaModelGetDsl;
import java.util.List;
import java.util.function.Function;
/**
* Fetches a channel by a known ID.
*
* {@include.example io.sphere.sdk.channels.queries.ChannelByIdGetTest#execution()}
*/
public interface ChannelByIdGet extends MetaModelGetDsl> {
static ChannelByIdGet of(final Identifiable channel) {
return of(channel.getId());
}
static ChannelByIdGet of(final String id) {
return new ChannelByIdGetImpl(id);
}
@Override
ChannelByIdGet plusExpansionPaths(final Function, ExpansionPath> m);
@Override
ChannelByIdGet withExpansionPaths(final Function, ExpansionPath> m);
@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