~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/onetoone/link/Customer.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//$Id: Customer.java 5686 2005-02-12 07:27:32Z steveebersole $
 
2
package org.hibernate.test.onetoone.link;
 
3
 
 
4
/**
 
5
 * @author Gavin King
 
6
 */
 
7
public class Customer {
 
8
        private Long id;
 
9
        private Person person;
 
10
        public Person getPerson() {
 
11
                return person;
 
12
        }
 
13
        public void setPerson(Person person) {
 
14
                this.person = person;
 
15
        }
 
16
        public Long getId() {
 
17
                return id;
 
18
        }
 
19
        public void setId(Long id) {
 
20
                this.id = id;
 
21
        }
 
22
}