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

io.sphere.sdk.reviews.expansion.ReviewExpansionModel Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.reviews.expansion;

import io.sphere.sdk.customers.expansion.CustomerExpansionModel;
import io.sphere.sdk.expansion.ExpansionPathContainer;
import io.sphere.sdk.reviews.Review;
import io.sphere.sdk.states.expansion.StateExpansionModel;

/**
 DSL class to create expansion path expressions.

 @param  the type for which the expansion path is
 */
public interface ReviewExpansionModel {
    CustomerExpansionModel customer();

    StateExpansionModel state();

    ExpansionPathContainer target();

    static ReviewExpansionModel of() {
        return new ReviewExpansionModelImpl<>();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy