Serialized Form


Package com.intrinsyc.janet

Class com.intrinsyc.janet.Credentials implements Serializable

Serialized Fields

password

java.lang.String password

username

java.lang.String username

Class com.intrinsyc.janet.JanetServlet implements Serializable

Class com.intrinsyc.janet.JHashtable implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
readObject is called to restore the state of the JHashtable from a stream. Only the keys and values are serialized since the hash values may be different when the contents are restored. Read count elements and insert into the JHashtable.


writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
WriteObject is called to save the state of the JHashtable to a stream. Only the keys and values are serialized since the hash values may be different when the contents are restored. iterate over the contents and write out the keys and values.

Serialized Fields

threshold

int threshold
Rehashes the table when count exceeds this threshold.


loadFactor

float loadFactor
The load factor for the JHashtable.

Class com.intrinsyc.janet.RemoteException implements Serializable