edu.mit.stellar.hibernate
Class AbstractNexusInfo

java.lang.Object
  extended byedu.mit.stellar.hibernate.AbstractNexusInfo
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
NexusInfo

public abstract class AbstractNexusInfo
extends java.lang.Object
implements java.io.Serializable

A class that represents a row in the NEXUS_INFO table. You can customize the behavior of this class by editing the class, NexusInfo().

Version:
$Revision: 1385 $, $Date: 2006-08-11 18:43:20 -0400 (Fri, 11 Aug 2006) $
Author:
MIT Stellar team
See Also:
Serialized Form

Constructor Summary
AbstractNexusInfo()
          Simple constructor of AbstractNexusInfo instances.
AbstractNexusInfo(java.lang.Long id)
          Constructor of AbstractNexusInfo instances given a simple primary key.
 
Method Summary
 boolean equals(java.lang.Object rhs)
          Implementation of the equals comparison on the basis of equality of the primary key values.
 java.util.Set getCourseCollectionSet()
          Return the value of the NEXUS_INFO_ID collection.
 java.util.Date getCreatedOn()
          Return the value of the CREATED_ON column.
 java.lang.Long getId()
          Return the simple primary key value that identifies this object.
 java.lang.String getSiteHandle()
          Return the value of the SITE_HANDLE column.
 java.lang.String getSiteService()
          Return the value of the SITE_SERVICE column.
 int hashCode()
          Implementation of the hashCode method conforming to the Bloch pattern with the exception of array properties (these are very unlikely primary key types).
 void setCourseCollectionSet(java.util.Set courseCollectionSet)
          Set the value of the NEXUS_INFO_ID collection.
 void setCreatedOn(java.util.Date createdOn)
          Set the value of the CREATED_ON column.
 void setId(java.lang.Long id)
          Set the simple primary key value that identifies this object.
 void setSiteHandle(java.lang.String siteHandle)
          Set the value of the SITE_HANDLE column.
 void setSiteService(java.lang.String siteService)
          Set the value of the SITE_SERVICE column.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractNexusInfo

public AbstractNexusInfo()
Simple constructor of AbstractNexusInfo instances.


AbstractNexusInfo

public AbstractNexusInfo(java.lang.Long id)
Constructor of AbstractNexusInfo instances given a simple primary key.

Parameters:
id -
Method Detail

getId

public java.lang.Long getId()
Return the simple primary key value that identifies this object.

Returns:
java.lang.Long

setId

public void setId(java.lang.Long id)
Set the simple primary key value that identifies this object.

Parameters:
id -

getSiteHandle

public java.lang.String getSiteHandle()
Return the value of the SITE_HANDLE column.

Returns:
java.lang.String

setSiteHandle

public void setSiteHandle(java.lang.String siteHandle)
Set the value of the SITE_HANDLE column.

Parameters:
siteHandle -

getSiteService

public java.lang.String getSiteService()
Return the value of the SITE_SERVICE column.

Returns:
java.lang.String

setSiteService

public void setSiteService(java.lang.String siteService)
Set the value of the SITE_SERVICE column.

Parameters:
siteService -

getCreatedOn

public java.util.Date getCreatedOn()
Return the value of the CREATED_ON column.

Returns:
java.util.Date

setCreatedOn

public void setCreatedOn(java.util.Date createdOn)
Set the value of the CREATED_ON column.

Parameters:
createdOn -

getCourseCollectionSet

public java.util.Set getCourseCollectionSet()
Return the value of the NEXUS_INFO_ID collection.

Returns:
CourseCollection

setCourseCollectionSet

public void setCourseCollectionSet(java.util.Set courseCollectionSet)
Set the value of the NEXUS_INFO_ID collection.

Parameters:
courseCollectionSet -

equals

public boolean equals(java.lang.Object rhs)
Implementation of the equals comparison on the basis of equality of the primary key values.

Parameters:
rhs -
Returns:
boolean

hashCode

public int hashCode()
Implementation of the hashCode method conforming to the Bloch pattern with the exception of array properties (these are very unlikely primary key types).

Returns:
int


Copyright 2005-2005-2006 MIT AMPS. All Rights Reserved.