Examples of SlingRequestEvent


Examples of org.apache.sling.api.request.SlingRequestEvent

  public void sendEvent ( final HttpServletRequest request,
          final SlingRequestEvent.EventType type) {
    final Object[] services = serviceTracker.getServices();
    if ( services != null && services.length > 0 ) {
        final SlingRequestEvent event = new SlingRequestEvent(this.servletContext, request, type);
      for ( final Object service : services ) {
        ( (SlingRequestListener) service ).onEvent( event );
      }
    }
  }
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.