// UserDB object import java.io.IOException; import javax.servlet.http.*; abstract public class UserDB implements HttpSessionBindingListener { protected String user; protected String dir; protected boolean autosave = false; protected boolean dirty=false; public boolean getAutosave() { return autosave; } public void setAutoSave(boolean b) { autosave=b; } public String getUser() { return user; } public void setUser(String user) { this.user=user; } public String getDir() { return dir; } public void setDir(String dir) { this.dir=dir; } abstract public String getProperty(String key,String deflt); abstract public void writeProperty(String key,String value); abstract public void save() throws IOException; abstract public boolean create(String password) throws IOException; abstract public boolean load(String password); // methods to manage sessions public void valueBound(HttpSessionBindingEvent event) { // no action } public void valueUnbound(HttpSessionBindingEvent event) { if (autosave && dirty) { try { save(); dirty=false; } catch (IOException e) { } } } }

Java@Work | Who Are You, Anyway? (Web Techniques, Feb 2001)
One hallmark of a great restaurant is that the staff knows your name and remembers you when you visit. How many movies have you seen where someone orders "the usual" and the waiter or bartender knows what to do? Personally, I've only been to a few places that offer that level of servicemaybe times have changed, or maybe it's just me.Related Reading
More Insights
INFO-LINK
![]() |
To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy. |