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

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/mappingexception/User.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: User.java 4746 2004-11-11 20:57:28Z steveebersole $
 
2
package org.hibernate.test.mappingexception;
 
3
 
 
4
import java.util.Set;
 
5
import java.util.HashSet;
 
6
 
 
7
/**
 
8
 * 
 
9
 *
 
10
 * @author Max Rydahl Andersen
 
11
 */
 
12
public class User {
 
13
        private Long id;
 
14
        private String username;
 
15
        
 
16
        public Long getId() {
 
17
                return id;
 
18
        }
 
19
 
 
20
        public void setId(Long id) {
 
21
                this.id = id;
 
22
        }
 
23
 
 
24
        public String getUsername() {
 
25
                return username;
 
26
        }
 
27
 
 
28
        public void setUsername(String username) {
 
29
                this.username = username;
 
30
        }
 
31
}