Extracted ooo-user bits into separate library.

This commit is contained in:
Michael Bayne
2011-10-05 09:37:10 -07:00
commit 1d78bbe27b
84 changed files with 12903 additions and 0 deletions
@@ -0,0 +1,34 @@
//
// $Id$
package com.threerings.user;
import java.sql.Date;
/**
* Used to load detailed information about a user from the OOO user
* database tables.
*/
public class DetailedUser
{
/** The user's assigned integer userid. */
public int userId;
/** The user's chosen username. */
public String username;
/** The date this record was created. */
public Date created;
/** The user's email address. */
public String email;
/** The user's birthday. */
public Date birthday;
/** The user's gender. */
public byte gender;
/** The missive provided by the user during registration. */
public String missive;
}