net.ezcontent.impl.eos.base
Class BaseImage

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

public abstract class BaseImage
extends Object
implements Serializable

This is an object that contains data related to the `Imagen` 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  BinaryData blob
           
private  int hashCode
           
private  int imageID
           
private  String name
           
private  SimpleDocument owner
           
 
Constructor Summary
BaseImage()
           
BaseImage(int imageID)
          Constructor for primary key
 
Method Summary
 boolean equals(Object obj)
           
 BinaryData getBlob()
           
 int getImageID()
          Return the unique identifier of this class
 String getName()
           
 SimpleDocument getOwner()
           
 int hashCode()
           
 void setBlob(BinaryData blob)
          Set the value related to the column: blob
 void setImageID(int imageID)
          Set the unique identifier of this class
 void setName(String name)
          Set the value related to the column: nombre
 void setOwner(SimpleDocument owner)
          Set the value related to the column: subject_id
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

imageID

private int imageID

name

private String name

owner

private SimpleDocument owner

blob

private BinaryData blob
Constructor Detail

BaseImage

public BaseImage()

BaseImage

public BaseImage(int imageID)
Constructor for primary key

Method Detail

getImageID

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


setImageID

public void setImageID(int imageID)
Set the unique identifier of this class

Parameters:
imageID - 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

getBlob

public BinaryData getBlob()

setBlob

public void setBlob(BinaryData blob)
Set the value related to the column: blob

Parameters:
blob - the blob value

getOwner

public SimpleDocument getOwner()

setOwner

public void setOwner(SimpleDocument owner)
Set the value related to the column: subject_id

Parameters:
owner - the subject_id value

equals

public boolean equals(Object obj)

hashCode

public int hashCode()