~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/union/Customer.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.hibernate.test.propertyref.inheritence.union;
2
 
 
3
 
/**
4
 
 * @author Gavin King
5
 
 */
6
 
public class Customer extends Person {
7
 
        private String customerId;
8
 
 
9
 
        public String getCustomerId() {
10
 
                return customerId;
11
 
        }
12
 
 
13
 
        public void setCustomerId(String customerId) {
14
 
                this.customerId = customerId;
15
 
        }
16
 
 
17
 
}