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

org.broadleafcommerce.core.catalog.domain.ProductOptionValue Maven / Gradle / Ivy

There is a newer version: 3.1.15-GA
Show newest version
/*
 * Copyright 2008-2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.broadleafcommerce.core.catalog.domain;

import org.broadleafcommerce.common.money.Money;

import java.io.Serializable;

/**
 * 
 * 

Stores the values for a given product option.

* *

For example, a ProductOption of type "color" might have values of ("red","blue").

* *

ProductOptionValues can also have a price adjustment associated with it which * will be automatically added to the Sku retail price and sale price

* * @author bpolster. */ public interface ProductOptionValue extends Serializable { /** * Returns unique identifier of the product option value. * @return */ public Long getId(); /** * Sets the unique identifier of the product option value. * @param id */ public void setId(Long id); /** * Gets the option value. (e.g. "red") * @param */ public String getAttributeValue(); /** * Sets the option value. (e.g. "red") * @param attributeValue */ public void setAttributeValue(String attributeValue); /** * Returns the order that the option value should be displayed in. * @return */ public Long getDisplayOrder(); /** * Sets the display order. * @param order */ public void setDisplayOrder(Long order); /** * Gets the price adjustment associated with this value. For instance, * if this ProductOptionValue represented an extra-large shirt, that * might be a $1 upcharge. This adjustments will be automatically * added to the Sku retail price and sale price *
*
* Note: This could also be a negative value if you wanted to offer * a particular ProductOptionValue at a discount * * @return the price adjustment for this */ public Money getPriceAdjustment(); /** * Gets the price adjustment associated with this value. For instance, * if this ProductOptionValue represented an extra-large shirt, that * might be a $1 upcharge. These adjustments will be automatically * added to the Sku retail price and sale price. To offer this * particular ProductOptionValue at a discount, you could also provide * a negative value here * * @param priceAdjustment */ public void setPriceAdjustment(Money priceAdjustment); /** * Returns the associated ProductOption * * @return */ public ProductOption getProductOption(); /** * Sets the associated product option. * @param productOption */ public void setProductOption(ProductOption productOption); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy