net.ezcontent.impl.eos.base
Class BaseHyperlink

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

public abstract class BaseHyperlink
extends Object
implements Serializable

This is an object that contains data related to the `Hyperlink` 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  int linkID
           
private  String name
           
private  SimpleDocument owner
           
private  String urlString
           
 
Constructor Summary
BaseHyperlink()
           
BaseHyperlink(int linkID)
          Constructor for primary key
BaseHyperlink(int linkID, String urlString)
          Constructor for required fields
 
Method Summary
 boolean equals(Object obj)
           
 int getLinkID()
          Return the unique identifier of this class
 String getName()
           
 SimpleDocument getOwner()
           
 String getUrlString()
           
 int hashCode()
           
 void setLinkID(int linkID)
          Set the unique identifier of this class
 void setName(String name)
          Set the value related to the column: name
 void setOwner(SimpleDocument owner)
          Set the value related to the column: subject_id
 void setUrlString(String urlString)
          Set the value related to the column: url
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

linkID

private int linkID

name

private String name

urlString

private String urlString

owner

private SimpleDocument owner
Constructor Detail

BaseHyperlink

public BaseHyperlink()

BaseHyperlink

public BaseHyperlink(int linkID)
Constructor for primary key


BaseHyperlink

public BaseHyperlink(int linkID,
                     String urlString)
Constructor for required fields

Method Detail

getLinkID

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


setLinkID

public void setLinkID(int linkID)
Set the unique identifier of this class

Parameters:
linkID - the new ID

getName

public String getName()

setName

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

Parameters:
name - the name value

getUrlString

public String getUrlString()

setUrlString

public void setUrlString(String urlString)
Set the value related to the column: url

Parameters:
urlString - the url 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()