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

io.sphere.sdk.selection.StoreSelectionBuilder Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.selection;

import io.sphere.sdk.models.Base;
import io.sphere.sdk.models.Builder;

import javax.annotation.Nullable;

public final class StoreSelectionBuilder extends Base implements Builder {
    @Nullable
    private String storeProjection;

    StoreSelectionBuilder(@Nullable final String storeProjection) {
        this.storeProjection = storeProjection;
    }

    public static StoreSelectionBuilder of(@Nullable final String storeProjection) {
        return new StoreSelectionBuilder(storeProjection);
    }

    @Nullable
    public String getStoreProjection() {
        return storeProjection;
    }

    @Override
    public StoreSelectionDsl build() {
        return new StoreSelectionDsl(storeProjection);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy