net.ezcontent.impl.eos.base
Class BaseGrupo

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

public abstract class BaseGrupo
extends Object
implements Serializable

This is an object that contains data related to the `Grupo` 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 gid
           
private  int hashCode
           
private  String name
           
private  Set permisos
           
private  Set tiposAccion
           
private  Set usuarios
           
 
Constructor Summary
BaseGrupo()
           
BaseGrupo(int gid)
          Constructor for primary key
BaseGrupo(int gid, String name)
          Constructor for required fields
 
Method Summary
 void addToPermisos(Object obj)
           
 void addToTiposAccion(Object obj)
           
 void addToUsuarios(Object obj)
           
 boolean equals(Object obj)
           
 int getGid()
          Return the unique identifier of this class
 String getName()
           
 Set getPermisos()
           
 Set getTiposAccion()
           
 Set getUsuarios()
           
 int hashCode()
           
 void setGid(int gid)
          Set the unique identifier of this class
 void setName(String name)
          Set the value related to the column: nombre
 void setPermisos(Set permisos)
           
 void setTiposAccion(Set tiposAccion)
           
 void setUsuarios(Set usuarios)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

gid

private int gid

name

private String name

usuarios

private Set usuarios

permisos

private Set permisos

tiposAccion

private Set tiposAccion
Constructor Detail

BaseGrupo

public BaseGrupo()

BaseGrupo

public BaseGrupo(int gid)
Constructor for primary key


BaseGrupo

public BaseGrupo(int gid,
                 String name)
Constructor for required fields

Method Detail

getGid

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


setGid

public void setGid(int gid)
Set the unique identifier of this class

Parameters:
gid - the new ID

getName

public String getName()

setName

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

Parameters:
name - the nombre value

getUsuarios

public Set getUsuarios()

setUsuarios

public void setUsuarios(Set usuarios)

addToUsuarios

public void addToUsuarios(Object obj)

getPermisos

public Set getPermisos()

setPermisos

public void setPermisos(Set permisos)

addToPermisos

public void addToPermisos(Object obj)

getTiposAccion

public Set getTiposAccion()

setTiposAccion

public void setTiposAccion(Set tiposAccion)

addToTiposAccion

public void addToTiposAccion(Object obj)

equals

public boolean equals(Object obj)

hashCode

public int hashCode()