net.ezcontent.impl.eos.base
Class BaseStatus

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

public abstract class BaseStatus
extends Object
implements Serializable

This is an object that contains data related to the `Status` 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 hashCode
           
private  String name
           
private  int priority
           
private  int statId
           
private  String type
           
 
Constructor Summary
BaseStatus()
           
BaseStatus(int statId)
          Constructor for primary key
BaseStatus(int statId, int priority, String name, String type)
          Constructor for required fields
 
Method Summary
 boolean equals(Object obj)
           
 String getName()
           
 int getPriority()
           
 int getStatId()
          Return the unique identifier of this class
 String getType()
           
 int hashCode()
           
 void setName(String name)
          Set the value related to the column: status
 void setPriority(int priority)
          Set the value related to the column: prioridad
 void setStatId(int statId)
          Set the unique identifier of this class
 void setType(String type)
          Set the value related to the column: tipo
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

statId

private int statId

priority

private int priority

name

private String name

type

private String type
Constructor Detail

BaseStatus

public BaseStatus()

BaseStatus

public BaseStatus(int statId)
Constructor for primary key


BaseStatus

public BaseStatus(int statId,
                  int priority,
                  String name,
                  String type)
Constructor for required fields

Method Detail

getStatId

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


setStatId

public void setStatId(int statId)
Set the unique identifier of this class

Parameters:
statId - the new ID

getPriority

public int getPriority()

setPriority

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

Parameters:
priority - the prioridad value

getName

public String getName()

setName

public void setName(String name)
Set the value related to the column: status

Parameters:
name - the status value

getType

public String getType()

setType

public void setType(String type)
Set the value related to the column: tipo

Parameters:
type - the tipo value

equals

public boolean equals(Object obj)

hashCode

public int hashCode()