/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.openjpa.persistence.models.company.idclass; import java.util.*; import javax.persistence.*; import org.apache.openjpa.persistence.models.company.*; @Entity(name="IDC_ProductOrder") public class ProductOrder implements IProductOrder { private static int ids = 1; @Id private int id = ++ids; @OneToMany private List<LineItem> items = new LinkedList<LineItem>(); @Basic private Date orderDate; @Basic private Date shippedDate; @OneToOne private Customer customer; public void setItems(List<? extends ILineItem> items) { this.items = (List<LineItem>) items; } public List<LineItem> getItems() { return this.items; } public void setOrderDate(Date orderDate) { this.orderDate = orderDate; } public Date getOrderDate() { return this.orderDate; } public void setShippedDate(Date shippedDate) { this.shippedDate = shippedDate; } public Date getShippedDate() { return this.shippedDate; } public void setCustomer(ICustomer customer) { this.customer = (Customer) customer; } public ICustomer getCustomer() { return this.customer; } }