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

org.broadleafcommerce.core.offer.domain.OfferTier Maven / Gradle / Ivy

There is a newer version: 3.1.15-GA
Show newest version
package org.broadleafcommerce.core.offer.domain;


import java.math.BigDecimal;



public interface OfferTier extends Comparable{

    Long getId();

    void setId(Long id);

    BigDecimal getAmount();

    Long getMinQuantity();

    void setAmount(BigDecimal amount);

    void setMinQuantity(Long minQuantity);

    Offer getOffer();

    void setOffer(Offer offer);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy