Example of persistent objects.

* description 

You can save an object to a file, and then load it later when you need it.
Class Server is a very simple object storage. Client sends an object
to Server to save it in a file on server. Then Client receives
the object got from the file.

You will find a file named data.fof at the server side.

See examples/objectStorage if you need an object storage on
server.

* version

Author: HIRANO Satoshi
Versioin: 1.0

* How to compile and run

c:> horbc Data.java Server.java
c:> horbc -c Client.java

c:> horb -v             (start a HORB server in another window)
c:> java horb.examples.persistent.Client


* Classes

   Server.java		simple server class
   Client.java		simple client class
   Data.java            object saved in a file
