io.sphere.sdk.messages.queries.MessageByIdGet Maven / Gradle / Ivy
The newest version!
/*
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.messages.Message.
To render this class the handlebars template 'queries/byFieldGetInterface.hbs' has been used.
*/
package io.sphere.sdk.messages.queries;
import io.sphere.sdk.expansion.ExpansionPath;
import io.sphere.sdk.queries.MetaModelGetDsl;
import io.sphere.sdk.messages.Message;
import io.sphere.sdk.messages.expansion.MessageExpansionModel;
import io.sphere.sdk.models.Identifiable;
import java.util.List;
/**
* {@include.example io.sphere.sdk.messages.queries.MessageByIdGetIntegrationTest#execution()}
If you need to receive one specific message class, like {@link io.sphere.sdk.orders.messages.DeliveryAddedMessage},
use {@link MessageQuery} with a predicate by id.
*/
public interface MessageByIdGet extends MetaModelGetDsl> {
static MessageByIdGet of(final String id) {
return new MessageByIdGetImpl(id);
}
static MessageByIdGet of(final Identifiable resource) {
return of(resource.getId());
}
@Override
List> expansionPaths();
@Override
MessageByIdGet plusExpansionPaths(final ExpansionPath expansionPath);
@Override
MessageByIdGet withExpansionPaths(final ExpansionPath expansionPath);
@Override
MessageByIdGet withExpansionPaths(final List> expansionPaths);
}