KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > joineduid > Account


1 //$Id: Account.java,v 1.1 2005/06/22 17:07:29 oneovthafew Exp $
2
package org.hibernate.test.joineduid;
3
4 import java.io.Serializable JavaDoc;
5
6 /**
7  * @author Gavin King
8  */

9 public class Account implements Serializable JavaDoc {
10     private String JavaDoc accountId;
11     private char type;
12
13     /**
14      * @return Returns the accountId.
15      */

16     public String JavaDoc getAccountId() {
17         return accountId;
18     }
19     /**
20      * @param accountId The accountId to set.
21      */

22     public void setAccountId(String JavaDoc 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 }
39
Popular Tags