Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.clra.rowing
Interface IRowingSession  view IRowingSession download IRowingSession.java

All Superinterfaces:
javax.ejb.EJBObject, java.rmi.Remote

public interface IRowingSession
extends javax.ejb.EJBObject

Represents a rowing session.

Version:
$Revision: 1.5 $ $Date: 2003/02/26 03:38:45 $

Method Summary
 void cancel()
          Cancels a rowing session.
 void delete()
          Deletes a rowing session.
 RowingSessionSnapshot getData()
          Returns a snapshot of a rowing session
 java.util.Date getDate()
          Returns the date (and time) of a rowing session
 java.lang.Integer getId()
          Returns the primary key of a rowing session.
 RowingSessionLevel getLevel()
          Returns the level of a rowing session
 com.clra.util.ISerializableComparator getNaturalComparator()
          Returns the natural Comparator for rowing sessions, in which rowing sessions are compared by date, state, type, level, and id, with that respective weighting.
 RowingSessionState getState()
          Returns the state of a rowing session.
 RowingSessionType getType()
          Returns the type of a rowing session
 void lock()
          Locks a rowing session.
 void publish()
          Publishes a rowing session.
 void setData(RowingSessionSnapshot data)
          Sets the date, level and type of a rowing session if the rowing session is TENATIVE.
 void setDate(java.util.Date date)
          Edits the date (and time) of a rowing session.
 void setLevel(RowingSessionLevel level)
          Edits the level of a rowing session.
 void setType(RowingSessionType type)
          Edits the type of a rowing session.
 
Methods inherited from interface javax.ejb.EJBObject
getEJBHome, getHandle, getPrimaryKey, isIdentical, remove
 

Method Detail

getNaturalComparator

public com.clra.util.ISerializableComparator getNaturalComparator()
                                                           throws java.rmi.RemoteException
Returns the natural Comparator for rowing sessions, in which rowing sessions are compared by date, state, type, level, and id, with that respective weighting.


getData

public RowingSessionSnapshot getData()
                              throws java.rmi.RemoteException
Returns a snapshot of a rowing session


setData

public void setData(RowingSessionSnapshot data)
             throws java.rmi.RemoteException,
                    RowingSessionStateException
Sets the date, level and type of a rowing session if the rowing session is TENATIVE. The id and state properties are not set.


getId

public java.lang.Integer getId()
                        throws java.rmi.RemoteException
Returns the primary key of a rowing session. The id is immutable after a rowing session is created.


getState

public RowingSessionState getState()
                            throws java.rmi.RemoteException
Returns the state of a rowing session. The state of a rowing session can not be set directly. It is changed as a side-effect of other operations on a rowing session.


publish

public void publish()
             throws java.rmi.RemoteException,
                    RowingSessionStateException
Publishes a rowing session. Only TENATIVE sessions may be published. The state of a published rowing session becomes OPEN.


lock

public void lock()
          throws java.rmi.RemoteException,
                 RowingSessionStateException
Locks a rowing session. Only OPEN sessions may be locked. The state of a locked rowing session becomes LOCKED.


cancel

public void cancel()
            throws java.rmi.RemoteException,
                   RowingSessionStateException
Cancels a rowing session. A TENTATIVE session may not be cancelled (but a TENATIVE session may be deleted). The state of a cancelled state becomes CANCELLED.


delete

public void delete()
            throws java.rmi.RemoteException,
                   javax.ejb.RemoveException,
                   RowingSessionStateException
Deletes a rowing session. Only a TENATIVE session may be deleted. A deleted session is removed from the database.

This is a safe version of the standard EJBObject.remove() operation. It checks that the session is tenative before removing it. Application code should always delete, rather than remove, rowing sessions. (The remove operation is required for testing.)


getDate

public java.util.Date getDate()
                       throws java.rmi.RemoteException
Returns the date (and time) of a rowing session


setDate

public void setDate(java.util.Date date)
             throws java.rmi.RemoteException,
                    RowingSessionStateException
Edits the date (and time) of a rowing session. Editing is allowed only for TENATIVE sessions.


getLevel

public RowingSessionLevel getLevel()
                            throws java.rmi.RemoteException
Returns the level of a rowing session


setLevel

public void setLevel(RowingSessionLevel level)
              throws java.rmi.RemoteException,
                     RowingSessionStateException
Edits the level of a rowing session. Editing is allowed only for TENATIVE sessions.


getType

public RowingSessionType getType()
                          throws java.rmi.RemoteException
Returns the type of a rowing session


setType

public void setType(RowingSessionType type)
             throws java.rmi.RemoteException,
                    RowingSessionStateException
Edits the type of a rowing session. Editing is allowed only for TENATIVE sessions.