6.2.6 JSMStorage Interface
public interface JSMStorage
{
public void clear () ;
public void remove ( String key ) ;
public Object getObject ( String key ) ;
public boolean putObject ( String key, Object value ) ;
public boolean containsKey ( String key ) ;
}
The JSMStorage object is a hash table that allows object to be stored and retrieved.
The key is always trimmed and uppercase.