/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.core.web.mvc.viewbean; public class CartDeliveryMethodViewBean extends AbstractViewBean { /** * Generated UID */ private static final long serialVersionUID = 251889000239105026L; private String code; private String label; private String deliveryTime; private String estimatedDeliveryDate; private String amountWithCurrencySign; public CartDeliveryMethodViewBean() { } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } public String getDeliveryTime() { return deliveryTime; } public void setDeliveryTime(String deliveryTime) { this.deliveryTime = deliveryTime; } public String getEstimatedDeliveryDate() { return estimatedDeliveryDate; } public void setEstimatedDeliveryDate(String estimatedDeliveryDate) { this.estimatedDeliveryDate = estimatedDeliveryDate; } public String getAmountWithCurrencySign() { return amountWithCurrencySign; } public void setAmountWithCurrencySign(String amountWithCurrencySign) { this.amountWithCurrencySign = amountWithCurrencySign; } }