Source code: org/hibernate/test/joineduid/Account.java
1 //$Id: Account.java 7274 2005-06-22 17:07:29Z oneovthafew $
2 package org.hibernate.test.joineduid;
3
4 import java.io.Serializable;
5
6 /**
7 * @author Gavin King
8 */
9 public class Account implements Serializable {
10 private String accountId;
11 private char type;
12
13 /**
14 * @return Returns the accountId.
15 */
16 public String getAccountId() {
17 return accountId;
18 }
19 /**
20 * @param accountId The accountId to set.
21 */
22 public void setAccountId(String accountId) {
23 this.accountId = accountId;
24 }
25 /**
26 * @return Returns the type.
27 */
28 public char getType() {
29 return type;
30 }
31 /**
32 * @param type The type to set.
33 */
34 public void setType(char type) {
35 this.type = type;
36 }
37
38 }