net.ezcontent.impl.eos.base
Class BaseUsuario

java.lang.Object
  extended bynet.ezcontent.impl.eos.base.BaseUsuario
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Usuario

public abstract class BaseUsuario
extends Object
implements Serializable

This is an object that contains data related to the `Usuario` table. Do not modify this class because it will be overwritten if the configuration file related to this class is modified. For more information visit The Hibernate Synchronizer page, or contact Joe Hudson

See Also:
Serialized Form

Field Summary
private  String fullname
           
private  Set grupos
           
private  int hashCode
           
private  String password
           
private  int uid
           
private  String username
           
 
Constructor Summary
BaseUsuario()
           
BaseUsuario(int uid)
          Constructor for primary key
BaseUsuario(int uid, String username)
          Constructor for required fields
 
Method Summary
 void addToGrupos(Object obj)
           
 boolean equals(Object obj)
           
 String getFullname()
           
 Set getGrupos()
           
 String getPassword()
           
 int getUid()
          Return the unique identifier of this class
 String getUsername()
           
 int hashCode()
           
 void setFullname(String fullname)
          Set the value related to the column: full_name
 void setGrupos(Set grupos)
           
 void setPassword(String password)
          Set the value related to the column: password
 void setUid(int uid)
          Set the unique identifier of this class
 void setUsername(String username)
          Set the value related to the column: username
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

uid

private int uid

password

private String password

username

private String username

fullname

private String fullname

grupos

private Set grupos
Constructor Detail

BaseUsuario

public BaseUsuario()

BaseUsuario

public BaseUsuario(int uid)
Constructor for primary key


BaseUsuario

public BaseUsuario(int uid,
                   String username)
Constructor for required fields

Method Detail

getUid

public int getUid()
Return the unique identifier of this class


setUid

public void setUid(int uid)
Set the unique identifier of this class

Parameters:
uid - the new ID

getPassword

public String getPassword()

setPassword

public void setPassword(String password)
Set the value related to the column: password

Parameters:
password - the password value

getUsername

public String getUsername()

setUsername

public void setUsername(String username)
Set the value related to the column: username

Parameters:
username - the username value

getFullname

public String getFullname()

setFullname

public void setFullname(String fullname)
Set the value related to the column: full_name

Parameters:
fullname - the full_name value

getGrupos

public Set getGrupos()

setGrupos

public void setGrupos(Set grupos)

addToGrupos

public void addToGrupos(Object obj)

equals

public boolean equals(Object obj)

hashCode

public int hashCode()