org.nees.data.service
Class NFMSSession

java.lang.Object
  extended byorg.nees.data.service.NFMSSession
All Implemented Interfaces:
AuthenticatedSession, Session
Direct Known Subclasses:
NFMSClientSession, NFMSDebugSession, NFMSServerSideSession

public abstract class NFMSSession
extends java.lang.Object
implements AuthenticatedSession

This class is the parent of both the server and client sessions. It is needed for those cases where code is reused on the client-side and server-side

Author:
Jeff Gaynor

Constructor Summary
NFMSSession()
          Creates a new instance of NFMSSession
 
Method Summary
abstract  void close()
          Release resources used by this session.
abstract  void open()
          Acquire resources required by this session.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.nees.util.sessions.AuthenticatedSession
getIdentity
 
Methods inherited from interface org.nees.util.sessions.Session
getInterpreter
 

Constructor Detail

NFMSSession

public NFMSSession()
Creates a new instance of NFMSSession

Method Detail

open

public abstract void open()
                   throws SessionException
Description copied from interface: Session
Acquire resources required by this session.

Specified by:
open in interface Session
Throws:
SessionException

close

public abstract void close()
                    throws SessionException
Description copied from interface: Session
Release resources used by this session.

Specified by:
close in interface Session
Throws:
SessionException