Is it good idea store my data objects in static variables of singleton class? I have class AppEngine where are some data static e.g. boolean int and instances of my classes (Configuration etc.)
When these objects are destroyed?
If I want to use them I call it something like this:
MyEngine.getMyEngine().getConfiguration().method(arg);