src/main/java/org/apache/sling/api/request/SlingJakartaRequestEvent.java [48:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.sc = sc;
        this.request = request;
        this.type = type;
    }

    /**
     * Gets the actual servlet context object as <code>ServletContext</code>
     * @return the actual servlet context.
     */
    public ServletContext getServletContext() {
        return sc;
    }

    /**
     * Gets the actual request object as <code>ServletRequest</code>
     * @return the actual request object as <code>ServletRequest</code>
     */
    public ServletRequest getServletRequest() {
        return request;
    }

    /**
     * get the type of the event, eg. EVENT_INIT or EVENT_DESTROY
     * @return the type of the event as <code>EventType</code>,
     * eg. EVENT_INIT or EVENT_DESTROY
     */
    public EventType getType() {
        return type;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/SlingRequestEvent.java [50:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.sc = sc;
        this.request = request;
        this.type = type;
    }

    /**
     * Gets the actual servlet context object as <code>ServletContext</code>
     * @return the actual servlet context.
     */
    public ServletContext getServletContext() {
        return sc;
    }

    /**
     * Gets the actual request object as <code>ServletRequest</code>
     * @return the actual request object as <code>ServletRequest</code>
     */
    public ServletRequest getServletRequest() {
        return request;
    }

    /**
     * get the type of the event, eg. EVENT_INIT or EVENT_DESTROY
     * @return the type of the event as <code>EventType</code>,
     * eg. EVENT_INIT or EVENT_DESTROY
     */
    public EventType getType() {
        return type;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



