I\'m trying to create a web user interface for a Java application. The user interface is going to be very simple, consisting of a single page with a form for users to pose t
You need a class which is Singleton or class with static method.
Word of caution: Beware of race condition. You might need to use synchronized keyword for those methods involving update/modify operation.