/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2009, Red Hat Inc. or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat Inc. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.hibernate.ejb.metamodel; import java.util.Collection; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Embedded; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToMany; import javax.persistence.OneToMany; import javax.persistence.OneToOne; import javax.persistence.Table; /** * TODO : javadoc * * @author Steve Ebersole */ @Entity @Table(name = "CUSTOMER_TABLE") public class Customer implements java.io.Serializable { private String id; private String name; private Integer age; private Address home; private Address work; private Country country; private Spouse spouse; private Collection<CreditCard> creditCards = new java.util.ArrayList<CreditCard>(); private Collection<Order> orders = new java.util.ArrayList<Order>(); private Collection<Alias> aliases = new java.util.ArrayList<Alias>(); private Collection<Alias> aliasesNoop = new java.util.ArrayList<Alias>(); public Customer() { } public Customer(String id, String name) { this.id = id; this.name = name; } public Customer(String id, String name, Country country) { this.id = id; this.name = name; this.country = country; } public Customer(String id, String name, Address home, Address work, Country country) { this.id = id; this.name = name; this.home = home; this.work = work; this.country = country; } @Id @Column(name = "ID") public String getId() { return id; } public void setId(String v) { this.id = v; } @Column(name = "NAME") public String getName() { return name; } public void setName(String v) { this.name = v; } @Column(name = "AGE") public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } @Embedded public Country getCountry() { return country; } public void setCountry(Country v) { this.country = v; } @OneToOne(cascade = CascadeType.ALL) @JoinColumn(name = "FK6_FOR_CUSTOMER_TABLE") public Address getHome() { return home; } public void setHome(Address v) { this.home = v; } @OneToOne(cascade = CascadeType.ALL) @JoinColumn(name = "FK5_FOR_CUSTOMER_TABLE") public Address getWork() { return work; } public void setWork(Address v) { this.work = v; } @OneToOne(cascade = CascadeType.ALL, mappedBy = "customer") public Spouse getSpouse() { return spouse; } public void setSpouse(Spouse v) { this.spouse = v; } @OneToMany(cascade = CascadeType.ALL, mappedBy = "customer") public Collection<CreditCard> getCreditCards() { return creditCards; } public void setCreditCards(Collection<CreditCard> v) { this.creditCards = v; } @OneToMany(cascade = CascadeType.ALL, mappedBy = "customer") public Collection<Order> getOrders() { return orders; } public void setOrders(Collection<Order> v) { this.orders = v; } @ManyToMany(cascade = CascadeType.ALL, mappedBy = "customers") public Collection<Alias> getAliases() { return aliases; } public void setAliases(Collection<Alias> v) { this.aliases = v; } @ManyToMany(cascade = CascadeType.ALL, mappedBy = "customersNoop") public Collection<Alias> getAliasesNoop() { return aliasesNoop; } public void setAliasesNoop(Collection<Alias> v) { this.aliasesNoop = v; } }