net.ezcontent.impl.eos.base
Class BaseAccion

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

public abstract class BaseAccion
extends Object
implements Serializable

This is an object that contains data related to the `Accion` 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  int accionID
           
private  Date actionDate
           
private  Status estado
           
private  Date finishDate
           
private  int hashCode
           
private  int priority
           
private  TipoAccion tipo
           
private  Usuario usuario
           
 
Constructor Summary
BaseAccion()
           
BaseAccion(int accionID)
          Constructor for primary key
BaseAccion(int accionID, Date actionDate)
          Constructor for required fields
 
Method Summary
 boolean equals(Object obj)
           
 int getAccionID()
          Return the unique identifier of this class
 Date getActionDate()
           
 Status getEstado()
           
 Date getFinishDate()
           
 int getPriority()
           
 TipoAccion getTipo()
           
 Usuario getUsuario()
           
 int hashCode()
           
 void setAccionID(int accionID)
          Set the unique identifier of this class
 void setActionDate(Date actionDate)
          Set the value related to the column: fecha_alta
 void setEstado(Status estado)
          Set the value related to the column: stat_id
 void setFinishDate(Date finishDate)
          Set the value related to the column: fecha_fin
 void setPriority(int priority)
          Set the value related to the column: prioridad
 void setTipo(TipoAccion tipo)
          Set the value related to the column: tipo_id
 void setUsuario(Usuario usuario)
          Set the value related to the column: uid
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

accionID

private int accionID

actionDate

private Date actionDate

finishDate

private Date finishDate

priority

private int priority

usuario

private Usuario usuario

tipo

private TipoAccion tipo

estado

private Status estado
Constructor Detail

BaseAccion

public BaseAccion()

BaseAccion

public BaseAccion(int accionID)
Constructor for primary key


BaseAccion

public BaseAccion(int accionID,
                  Date actionDate)
Constructor for required fields

Method Detail

getAccionID

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


setAccionID

public void setAccionID(int accionID)
Set the unique identifier of this class

Parameters:
accionID - the new ID

getActionDate

public Date getActionDate()

setActionDate

public void setActionDate(Date actionDate)
Set the value related to the column: fecha_alta

Parameters:
actionDate - the fecha_alta value

getFinishDate

public Date getFinishDate()

setFinishDate

public void setFinishDate(Date finishDate)
Set the value related to the column: fecha_fin

Parameters:
finishDate - the fecha_fin value

getPriority

public int getPriority()

setPriority

public void setPriority(int priority)
Set the value related to the column: prioridad

Parameters:
priority - the prioridad value

getUsuario

public Usuario getUsuario()

setUsuario

public void setUsuario(Usuario usuario)
Set the value related to the column: uid

Parameters:
usuario - the uid value

getTipo

public TipoAccion getTipo()

setTipo

public void setTipo(TipoAccion tipo)
Set the value related to the column: tipo_id

Parameters:
tipo - the tipo_id value

getEstado

public Status getEstado()

setEstado

public void setEstado(Status estado)
Set the value related to the column: stat_id

Parameters:
estado - the stat_id value

equals

public boolean equals(Object obj)

hashCode

public int hashCode()