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

io.sphere.sdk.carts.CustomLineItemImpl Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.carts;

import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.cartdiscounts.DiscountedLineItemPrice;
import io.sphere.sdk.cartdiscounts.DiscountedLineItemPriceForQuantity;
import io.sphere.sdk.models.LocalizedString;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.taxcategories.TaxCategory;
import io.sphere.sdk.taxcategories.TaxRate;
import io.sphere.sdk.types.CustomFields;

import javax.annotation.Nullable;
import javax.money.MonetaryAmount;
import java.util.List;
import java.util.Set;

import static java.util.Collections.emptyList;

final class CustomLineItemImpl extends LineItemLikeImpl implements CustomLineItem {
    private final LocalizedString name;
    private final MonetaryAmount money;
    private final String slug;
    private final Reference taxCategory;
    @Nullable
    private final TaxRate taxRate;
    @Nullable
    private final CustomFields custom;
    private final MonetaryAmount totalPrice;
    private final List discountedPricePerQuantity;


    @JsonCreator
    CustomLineItemImpl(final String id, final LocalizedString name, final MonetaryAmount money,
                       final String slug, final Long quantity, final Set state,
                       final Reference taxCategory, final TaxRate taxRate,
                       @Nullable final DiscountedLineItemPrice discountedPrice, @Nullable final CustomFields custom,
                       final MonetaryAmount totalPrice,
                       final List discountedPricePerQuantity) {
        super(id, state, quantity, discountedPrice);
        this.name = name;
        this.money = money;
        this.slug = slug;
        this.taxCategory = taxCategory;
        this.taxRate = taxRate;
        this.custom = custom;
        this.totalPrice = totalPrice;
        this.discountedPricePerQuantity = discountedPricePerQuantity != null ? discountedPricePerQuantity : emptyList();
    }

    @Override
    public LocalizedString getName() {
        return name;
    }

    @Override
    public MonetaryAmount getMoney() {
        return money;
    }

    @Override
    public String getSlug() {
        return slug;
    }

    @Override
    public Reference getTaxCategory() {
        return taxCategory;
    }

    @Override
    @Nullable
    public TaxRate getTaxRate() {
        return taxRate;
    }

    @Override
    @Nullable
    public CustomFields getCustom() {
        return custom;
    }

    @Override
    public MonetaryAmount getTotalPrice() {
        return totalPrice;
    }

    @Override
    public List getDiscountedPricePerQuantity() {
        return discountedPricePerQuantity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy