Package org.springframework.web.portlet.context

Examples of org.springframework.web.portlet.context.PortletRequestHandledEvent


      }
      if (this.publishEvents) {
        // Whether or not we succeeded, publish an event.
        long processingTime = System.currentTimeMillis() - startTime;
        this.portletApplicationContext.publishEvent(
            new PortletRequestHandledEvent(this,
                getPortletConfig().getPortletName(), request.getPortletMode().toString(),
                (request instanceof ActionRequest ? "action" : "render"),
                request.getRequestedSessionId(), getUsernameForRequest(request),
                processingTime, failureCause));
      }
View Full Code Here


      }
      if (isPublishEvents()) {
        // Whether or not we succeeded, publish an event.
        long processingTime = System.currentTimeMillis() - startTime;
        this.portletApplicationContext.publishEvent(
            new PortletRequestHandledEvent(this,
                getPortletConfig().getPortletName(), request.getPortletMode().toString(),
                (request instanceof ActionRequest ? "action" : "render"),
                request.getRequestedSessionId(), getUsernameForRequest(request),
                processingTime, failureCause));
      }
View Full Code Here

      }
      if (isPublishEvents()) {
        // Whether or not we succeeded, publish an event.
        long processingTime = System.currentTimeMillis() - startTime;
        this.portletApplicationContext.publishEvent(
            new PortletRequestHandledEvent(this,
                getPortletConfig().getPortletName(), request.getPortletMode().toString(),
                (request instanceof ActionRequest ? "action" : "render"),
                request.getRequestedSessionId(), getUsernameForRequest(request),
                processingTime, failureCause));
      }
View Full Code Here

      }
      if (this.publishEvents) {
        // Whether or not we succeeded, publish an event.
        long processingTime = System.currentTimeMillis() - startTime;
        this.portletApplicationContext.publishEvent(
            new PortletRequestHandledEvent(this,
                getPortletConfig().getPortletName(), request.getPortletMode().toString(),
                (request instanceof ActionRequest ? "action" : "render"),
                request.getRequestedSessionId(), getUsernameForRequest(request),
                processingTime, failureCause));
      }
View Full Code Here

TOP

Related Classes of org.springframework.web.portlet.context.PortletRequestHandledEvent

Copyright © 2018 www.massapicom. 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.