edu.iastate.metnet.hibernate
Class AbstractUser

java.lang.Object
  extended by edu.iastate.metnet.hibernate.AbstractUser
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
User

public abstract class AbstractUser
extends java.lang.Object
implements java.io.Serializable

A class that represents a row in the user table. You can customize the behavior of this class by editing the class, User(). WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration.

See Also:
Serialized Form

Constructor Summary
AbstractUser()
          Simple constructor of AbstractUser instances.
AbstractUser(java.lang.String username)
          Constructor of AbstractUser instances given a simple primary key.
 
Method Summary
 boolean equals(java.lang.Object rhs)
          Implementation of the equals comparison on the basis of equality of the primary key values.
 java.lang.String getAffiliation()
          Return the value of the Affiliation column.
 java.lang.Integer getBmid()
          Return the value of the BMID column.
 java.lang.String getClassification()
          Return the value of the Classification column.
 java.util.Date getDate()
          Return the value of the Date column.
 java.lang.String getEmail()
          Return the value of the Email column.
 java.lang.String getFirstname()
          Return the value of the Firstname column.
 java.lang.String getLastname()
          Return the value of the Lastname column.
 java.lang.String getPassword()
          Return the value of the Password column.
 java.lang.String getUsername()
          Return the simple primary key value that identifies this object.
 int hashCode()
          Implementation of the hashCode method conforming to the Bloch pattern with the exception of array properties (these are very unlikely primary key types).
 void setAffiliation(java.lang.String affiliation)
          Set the value of the Affiliation column.
 void setBmid(java.lang.Integer bmid)
          Set the value of the BMID column.
 void setClassification(java.lang.String classification)
          Set the value of the Classification column.
 void setDate(java.util.Date date)
          Set the value of the Date column.
 void setEmail(java.lang.String email)
          Set the value of the Email column.
 void setFirstname(java.lang.String firstname)
          Set the value of the Firstname column.
 void setLastname(java.lang.String lastname)
          Set the value of the Lastname column.
 void setPassword(java.lang.String password)
          Set the value of the Password column.
 void setUsername(java.lang.String username)
          Set the simple primary key value that identifies this object.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractUser

public AbstractUser()
Simple constructor of AbstractUser instances.


AbstractUser

public AbstractUser(java.lang.String username)
Constructor of AbstractUser instances given a simple primary key.

Parameters:
username -
Method Detail

getUsername

public java.lang.String getUsername()
Return the simple primary key value that identifies this object.

Returns:
java.lang.String

setUsername

public void setUsername(java.lang.String username)
Set the simple primary key value that identifies this object.

Parameters:
username -

getFirstname

public java.lang.String getFirstname()
Return the value of the Firstname column.

Returns:
java.lang.String

setFirstname

public void setFirstname(java.lang.String firstname)
Set the value of the Firstname column.

Parameters:
firstname -

getLastname

public java.lang.String getLastname()
Return the value of the Lastname column.

Returns:
java.lang.String

setLastname

public void setLastname(java.lang.String lastname)
Set the value of the Lastname column.

Parameters:
lastname -

getEmail

public java.lang.String getEmail()
Return the value of the Email column.

Returns:
java.lang.String

setEmail

public void setEmail(java.lang.String email)
Set the value of the Email column.

Parameters:
email -

getAffiliation

public java.lang.String getAffiliation()
Return the value of the Affiliation column.

Returns:
java.lang.String

setAffiliation

public void setAffiliation(java.lang.String affiliation)
Set the value of the Affiliation column.

Parameters:
affiliation -

getClassification

public java.lang.String getClassification()
Return the value of the Classification column.

Returns:
java.lang.String

setClassification

public void setClassification(java.lang.String classification)
Set the value of the Classification column.

Parameters:
classification -

getPassword

public java.lang.String getPassword()
Return the value of the Password column.

Returns:
java.lang.String

setPassword

public void setPassword(java.lang.String password)
Set the value of the Password column.

Parameters:
password -

getBmid

public java.lang.Integer getBmid()
Return the value of the BMID column.

Returns:
java.lang.Integer

setBmid

public void setBmid(java.lang.Integer bmid)
Set the value of the BMID column.

Parameters:
bmid -

getDate

public java.util.Date getDate()
Return the value of the Date column.

Returns:
java.util.Date

setDate

public void setDate(java.util.Date date)
Set the value of the Date column.

Parameters:
date -

equals

public boolean equals(java.lang.Object rhs)
Implementation of the equals comparison on the basis of equality of the primary key values.

Overrides:
equals in class java.lang.Object
Parameters:
rhs -
Returns:
boolean

hashCode

public int hashCode()
Implementation of the hashCode method conforming to the Bloch pattern with the exception of array properties (these are very unlikely primary key types).

Overrides:
hashCode in class java.lang.Object
Returns:
int