net.ezcontent.impl.eos.base
Class BaseSimpleDocument

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

public abstract class BaseSimpleDocument
extends Object
implements Serializable

This is an object that contains data related to the `SimpleDocument` 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  Map attachments
           
private  int docID
           
private  Status docStatus
           
private  int hashCode
           
private  Map images
           
private  Map links
           
private  Date publishDate
           
private  Map references
           
private  DocumentSubject tema
           
private  TextoDoc texto
           
private  String title
           
private  Date unpublishDate
           
 
Constructor Summary
BaseSimpleDocument()
           
BaseSimpleDocument(int docID)
          Constructor for primary key
BaseSimpleDocument(int docID, String title)
          Constructor for required fields
 
Method Summary
 boolean equals(Object obj)
           
 Map getAttachments()
           
 int getDocID()
          Return the unique identifier of this class
 Status getDocStatus()
           
 Map getImages()
           
 Map getLinks()
           
 Date getPublishDate()
           
 Map getReferences()
           
 DocumentSubject getTema()
           
 TextoDoc getTexto()
           
 String getTitle()
           
 Date getUnpublishDate()
           
 int hashCode()
           
 void setAttachments(Map attachments)
           
 void setDocID(int docID)
          Set the unique identifier of this class
 void setDocStatus(Status docStatus)
          Set the value related to the column: stat_id
 void setImages(Map images)
           
 void setLinks(Map links)
           
 void setPublishDate(Date publishDate)
          Set the value related to the column: pub_date
 void setReferences(Map references)
           
 void setTema(DocumentSubject tema)
          Set the value related to the column: subject_id
 void setTexto(TextoDoc texto)
          Set the value related to the column: text_id
 void setTitle(String title)
          Set the value related to the column: title
 void setUnpublishDate(Date unpublishDate)
          Set the value related to the column: unpub_date
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

docID

private int docID

title

private String title

publishDate

private Date publishDate

unpublishDate

private Date unpublishDate

texto

private TextoDoc texto

docStatus

private Status docStatus

tema

private DocumentSubject tema

attachments

private Map attachments

images

private Map images

links

private Map links

references

private Map references
Constructor Detail

BaseSimpleDocument

public BaseSimpleDocument()

BaseSimpleDocument

public BaseSimpleDocument(int docID)
Constructor for primary key


BaseSimpleDocument

public BaseSimpleDocument(int docID,
                          String title)
Constructor for required fields

Method Detail

getDocID

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


setDocID

public void setDocID(int docID)
Set the unique identifier of this class

Parameters:
docID - the new ID

getTitle

public String getTitle()

setTitle

public void setTitle(String title)
Set the value related to the column: title

Parameters:
title - the title value

getPublishDate

public Date getPublishDate()

setPublishDate

public void setPublishDate(Date publishDate)
Set the value related to the column: pub_date

Parameters:
publishDate - the pub_date value

getUnpublishDate

public Date getUnpublishDate()

setUnpublishDate

public void setUnpublishDate(Date unpublishDate)
Set the value related to the column: unpub_date

Parameters:
unpublishDate - the unpub_date value

getTexto

public TextoDoc getTexto()

setTexto

public void setTexto(TextoDoc texto)
Set the value related to the column: text_id

Parameters:
texto - the text_id value

getDocStatus

public Status getDocStatus()

setDocStatus

public void setDocStatus(Status docStatus)
Set the value related to the column: stat_id

Parameters:
docStatus - the stat_id value

getTema

public DocumentSubject getTema()

setTema

public void setTema(DocumentSubject tema)
Set the value related to the column: subject_id

Parameters:
tema - the subject_id value

getAttachments

public Map getAttachments()

setAttachments

public void setAttachments(Map attachments)

getImages

public Map getImages()

setImages

public void setImages(Map images)

getLinks

public Map getLinks()

setLinks

public void setLinks(Map links)

getReferences

public Map getReferences()

setReferences

public void setReferences(Map references)

equals

public boolean equals(Object obj)

hashCode

public int hashCode()