Examples of IRequestLogger


Examples of org.apache.wicket.protocol.http.IRequestLogger

      Session.get().internalDetach();
    }

    if (Application.exists())
    {
      IRequestLogger requestLogger = Application.get().getRequestLogger();
      if (requestLogger != null)
      {
        requestLogger.requestTime((System.currentTimeMillis() - startTime));
      }
    }
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

    else if (create)
    {
      httpSession = getHttpSession(request, true);
      id = httpSession.getId();

      IRequestLogger logger = Application.get().getRequestLogger();
      if (logger != null)
      {
        logger.sessionCreated(id);
      }
    }
    return id;
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

    HttpSession httpSession = getHttpSession(request, false);
    if (httpSession != null)
    {
      String attributeName = getSessionAttributePrefix(request) + name;

      IRequestLogger logger = Application.get().getRequestLogger();
      if (logger != null)
      {
        Object value = httpSession.getAttribute(attributeName);
        if (value != null)
        {
          logger.objectRemoved(value);
        }
      }
      httpSession.removeAttribute(attributeName);
    }
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

    // ignore call if the session was marked invalid
    HttpSession httpSession = getHttpSession(request, false);
    if (httpSession != null)
    {
      String attributeName = getSessionAttributePrefix(request) + name;
      IRequestLogger logger = Application.get().getRequestLogger();
      if (logger != null)
      {
        if (httpSession.getAttribute(attributeName) == null)
        {
          logger.objectCreated(value);
        }
        else
        {
          logger.objectUpdated(value);
        }
      }
      httpSession.setAttribute(attributeName, value);
    }
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

    else if (create)
    {
      httpSession = getHttpSession(request, true);
      id = httpSession.getId();

      IRequestLogger logger = Application.get().getRequestLogger();
      if (logger != null)
      {
        logger.sessionCreated(id);
      }
    }
    return id;
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

    HttpSession httpSession = getHttpSession(request, false);
    if (httpSession != null)
    {
      String attributeName = getSessionAttributePrefix(request) + name;

      IRequestLogger logger = Application.get().getRequestLogger();
      if (logger != null)
      {
        Object value = httpSession.getAttribute(attributeName);
        if (value != null)
        {
          logger.objectRemoved(value);
        }
      }
      httpSession.removeAttribute(attributeName);
    }
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

    // ignore call if the session was marked invalid
    HttpSession httpSession = getHttpSession(request, false);
    if (httpSession != null)
    {
      String attributeName = getSessionAttributePrefix(request) + name;
      IRequestLogger logger = Application.get().getRequestLogger();
      if (logger != null)
      {
        if (httpSession.getAttribute(attributeName) == null)
        {
          logger.objectCreated(value);
        }
        else
        {
          logger.objectUpdated(value);
        }
      }
      httpSession.setAttribute(attributeName, value);
    }
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

      @Override
      public String getObject()
      {
        WebApplication webApplication = (WebApplication)Application.get();
        IRequestLogger requestLogger = webApplication.getRequestLogger();
        if (requestLogger == null)
        {
          return "Enable request recording";
        }
        else
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

  }

  IRequestLogger getRequestLogger()
  {
    WebApplication webApplication = (WebApplication)Application.get();
    IRequestLogger requestLogger = webApplication.getRequestLogger();

    if (requestLogger == null)
      requestLogger = new RequestLogger();
    return requestLogger;
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.IRequestLogger

  IRequestLogger getRequestLogger()
  {
    WebApplication webApplication = (WebApplication)Application.get();

    IRequestLogger requestLogger = webApplication.getRequestLogger();

    if (webApplication.getRequestLogger() == null)
      requestLogger = new RequestLogger();
    return requestLogger;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.