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

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

There is a newer version: 3.1.15-GA
Show newest version
/*
 * #%L
 * BroadleafCommerce Framework
 * %%
 * Copyright (C) 2009 - 2013 Broadleaf Commerce
 * %%
 * 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.
 * #L%
 */
package org.broadleafcommerce.core.catalog.domain;

public class RelatedProductDTO {
    private Long categoryId;
    private Long productId;
    private RelatedProductTypeEnum type = RelatedProductTypeEnum.FEATURED;
    private boolean cumulativeResults=true;
    private Integer quantity = null;
    
    /**
     * Returns the categoryId for which the system should find related products.
     */
    public Long getCategoryId() {
        return categoryId;
    }

    /**
     * Sets the categoryId for which the system should find related products.   May be ignored 
     * by implementations if an productId is also specified.   
     * @param categoryId
     */
    public void setCategoryId(Long categoryId) {
        this.categoryId = categoryId;
    }
    
    /**
     * Returns the productId for which the system should find related products.
     */
    public Long getProductId() {
        return productId;
    }
    
    /**
     * Sets the productId for which the system should find related products.   
     * @param productId
     */ 
    public void setProductId(Long productId) {
        this.productId = productId;
    }
    
    /**
     * Returns the type of relationship that is desired.
     * @see RelatedProductTypeEnum
     *  
     * @return
     */
    public RelatedProductTypeEnum getType() {
        return type;
    }
    
    /**
     * Sets the type of relationship that is desired.
     * 
     * @see RelatedProductTypeEnum
     * @param type
     */
    public void setType(RelatedProductTypeEnum type) {
        this.type = type;
    }
    
    /**
     * Returns whether cumulative results are desired.   Defaults to true.  
     * 
     * @return
     */
    public boolean isCumulativeResults() {
        return cumulativeResults;
    }
    
    /**
     * Sets whether cumulative results are desired. 
     * 
     * @param cumulativeResults
     */
    public void setCumulativeResults(boolean cumulativeResults) {
        this.cumulativeResults = cumulativeResults;
    }

    /**
     * The number of results to return.    The system will not look for additional results after 
     * the quantity has been met.    Null indicates to return all results.
     * @return
     */
    public Integer getQuantity() {
        return quantity;
    }

    /**
     * The number of results to return.  Null indicates to return all results.
     * 
     * @param maxQuantity
     */
    public void setQuantity(Integer quantity) {
        this.quantity = quantity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy