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

fr.xebia.extras.selma.beans.OrderDto Maven / Gradle / Ivy

/*
 * Copyright 2013 Xebia and Séven Le Mesle
 *
 * 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 fr.xebia.extras.selma.beans;

import java.util.Date;
import java.util.List;

/**
 *
 */
public class OrderDto {

    private CustomerDto customer;
    private List products;
    private SalesChannelDto salesChannel;
    private long totalAmount;
    private Date creationDate;

    public CustomerDto getCustomer() {
        return customer;
    }

    public void setCustomer(CustomerDto customer) {
        this.customer = customer;
    }

    public List getProducts() {
        return products;
    }

    public void setProducts(List products) {
        this.products = products;
    }

    public SalesChannelDto getSalesChannel() {
        return salesChannel;
    }

    public void setSalesChannel(SalesChannelDto salesChannel) {
        this.salesChannel = salesChannel;
    }

    public long getTotalAmount() {
        return totalAmount;
    }

    public void setTotalAmount(long totalAmount) {
        this.totalAmount = totalAmount;
    }

    public Date getCreationDate() {
        return creationDate;
    }

    public void setCreationDate(Date creationDate) {
        this.creationDate = creationDate;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy