/******************************************************************************* * Copyright (c) 2011, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.models.jpa.nosql; import java.util.*; import javax.persistence.Column; import javax.persistence.ElementCollection; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToOne; import org.eclipse.persistence.nosql.annotations.NoSql; import org.eclipse.persistence.annotations.UuidGenerator; /** * Model order class, maps to ORDER record. */ @Entity @NoSql public class Order { @Id @Column(name="@id") @UuidGenerator(name="uuid") @GeneratedValue(generator="uuid") public String id; public String orderedBy; public Address address; @OneToOne public Customer customer; @ElementCollection public List<LineItem> lineItems = new ArrayList(); @ElementCollection public List<String> comments = new ArrayList(); public String toString() { return "Order(" + id + ", " + orderedBy + ", " + address + ", " + lineItems + ", " + comments + ")"; } }