feynman.framework.datastore
Class DbmsDataStore

java.lang.Object
  |
  +--feynman.framework.datastore.DbmsDataStore
All Implemented Interfaces:
DataStore

public class DbmsDataStore
extends java.lang.Object
implements DataStore


Method Summary
 void close()
          Method to close the connection to the data store.
 void open(java.lang.String driver)
          Method to open a connection to the data store.
 void save(PhysicalMeasurement ps)
          Method to save the PhysicalMeasurement bean to the data store.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

open

public void open(java.lang.String driver)
          throws ConnectionException
Description copied from interface: DataStore
Method to open a connection to the data store.
Specified by:
open in interface DataStore

save

public void save(PhysicalMeasurement ps)
Description copied from interface: DataStore
Method to save the PhysicalMeasurement bean to the data store. At the present time, the framework will only support saving this bean to the data store.
Specified by:
save in interface DataStore

close

public void close()
           throws ConnectionException
Description copied from interface: DataStore
Method to close the connection to the data store.
Specified by:
close in interface DataStore