KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > core > impl > user > UserPref


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.core.impl.user;
10
11 import org.jboss.portal.core.impl.preferences.MappedPreference;
12
13 /**
14  *
15  * @hibernate.class
16  * table="jbp_user_pref"
17  *
18  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
19  * @version $Revision: 1.4 $
20  */

21 public class UserPref extends MappedPreference
22 {
23    public UserPref()
24    {
25    }
26
27    public UserPref(String JavaDoc name)
28    {
29       super(name);
30    }
31
32    /**
33     * @hibernate.array
34     * table="jbp_user_pref_prop_value"
35     */

36    public String JavaDoc[] getStrings()
37    {
38       return super.getStrings();
39    }
40 }
41
Popular Tags