public static void forceNewInstance() {
   instance = new TAUserNick(OTOApp.getInstance().getDB().getDbEngine());
 }
 public static TAUserNick getInstance() {
   if (instance == null) {
     instance = new TAUserNick(OTOApp.getInstance().getDB().getDbEngine());
   }
   return instance;
 }