public void sessionCreated(HttpSessionBindingEvent se) {
   try {
     Log.info("HttpSession Created...");
   } catch (Exception e) {
     Log.info("Exception from sessionCreated ::" + e);
   }
 }
 public void valueUnbound(HttpSessionBindingEvent pinsEvent) {
   SessionUtil.setNowUser(-1);
   Log.info(
       " <SESSIONLOGINID> <DELETED FROM SESSION> <LOGIN_ID:"
           + loginId_
           + "><SESSION_ID:"
           + sessionId_
           + ">");
 }
 public ResultSet executeQuery() throws SQLException {
   try {
     return statement.executeQuery();
   } catch (SQLException se) {
     Log.info(se.toString(), this);
     throw se;
   } finally {
   }
 }
 public boolean execute() throws SQLException {
   try {
     return statement.execute();
   } catch (SQLException se) {
     Log.info(se.toString(), this);
     throw se;
   } finally {
   }
 }
 public int executeUpdate() throws SQLException {
   int result = 0;
   try {
     result = statement.executeUpdate();
   } catch (SQLException se) {
     Log.info(se.toString(), this);
     throw se;
   } finally {
   }
   return result;
 }
 public void valueBound(HttpSessionBindingEvent pinsEvent) {
   SessionUtil.setNowUser(1);
   Log.info(" <SESSIONLISTENER> <CREATED> <SESSIONID:" + loginId_ + ">");
 }
 public TRuntimeException(String code, String msg) {
   super("[" + code + "]" + msg);
   Log.info("[" + code + "]" + msg, this);
 }