I am using apache wicket 1.5 and when a new session is initialized I want to create a new temp folder:
Example:
Session_1_connect -> create_temp_1
Session_1_disconnect -> delete_temp_1
A new user logs in:
Session_2_connect -> create_temp_2
Session_2_disconnect -> delete_temp_2
I know how to make dirs in java, thats not a problem. Its just how to configure it in wicket?