All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.web.context.support.RequestHandledEvent Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.web.context.support;

import org.springframework.context.ApplicationEvent;
import org.springframework.lang.Nullable;

/**
 * Event raised when a request is handled within an ApplicationContext.
 *
 * 

Supported by Spring's own FrameworkServlet (through a specific * ServletRequestHandledEvent subclass), but can also be raised by any * other web component. * * @author Rod Johnson * @author Juergen Hoeller * @since January 17, 2001 * @see ServletRequestHandledEvent * @see org.springframework.web.servlet.FrameworkServlet * @see org.springframework.context.ApplicationContext#publishEvent */ @SuppressWarnings("serial") public class RequestHandledEvent extends ApplicationEvent { /** Session id that applied to the request, if any. */ @Nullable private String sessionId; /** Usually the UserPrincipal. */ @Nullable private String userName; /** Request processing time. */ private final long processingTimeMillis; /** Cause of failure, if any. */ @Nullable private Throwable failureCause; /** * Create a new RequestHandledEvent with session information. * @param source the component that published the event * @param sessionId the id of the HTTP session, if any * @param userName the name of the user that was associated with the * request, if any (usually the UserPrincipal) * @param processingTimeMillis the processing time of the request in milliseconds */ public RequestHandledEvent(Object source, @Nullable String sessionId, @Nullable String userName, long processingTimeMillis) { super(source); this.sessionId = sessionId; this.userName = userName; this.processingTimeMillis = processingTimeMillis; } /** * Create a new RequestHandledEvent with session information. * @param source the component that published the event * @param sessionId the id of the HTTP session, if any * @param userName the name of the user that was associated with the * request, if any (usually the UserPrincipal) * @param processingTimeMillis the processing time of the request in milliseconds * @param failureCause the cause of failure, if any */ public RequestHandledEvent(Object source, @Nullable String sessionId, @Nullable String userName, long processingTimeMillis, @Nullable Throwable failureCause) { this(source, sessionId, userName, processingTimeMillis); this.failureCause = failureCause; } /** * Return the processing time of the request in milliseconds. */ public long getProcessingTimeMillis() { return this.processingTimeMillis; } /** * Return the id of the HTTP session, if any. */ @Nullable public String getSessionId() { return this.sessionId; } /** * Return the name of the user that was associated with the request * (usually the UserPrincipal). * @see javax.servlet.http.HttpServletRequest#getUserPrincipal() */ @Nullable public String getUserName() { return this.userName; } /** * Return whether the request failed. */ public boolean wasFailure() { return (this.failureCause != null); } /** * Return the cause of failure, if any. */ @Nullable public Throwable getFailureCause() { return this.failureCause; } /** * Return a short description of this event, only involving * the most important context data. */ public String getShortDescription() { StringBuilder sb = new StringBuilder(); sb.append("session=[").append(this.sessionId).append("]; "); sb.append("user=[").append(this.userName).append("]; "); return sb.toString(); } /** * Return a full description of this event, involving * all available context data. */ public String getDescription() { StringBuilder sb = new StringBuilder(); sb.append("session=[").append(this.sessionId).append("]; "); sb.append("user=[").append(this.userName).append("]; "); sb.append("time=[").append(this.processingTimeMillis).append("ms]; "); sb.append("status=["); if (!wasFailure()) { sb.append("OK"); } else { sb.append("failed: ").append(this.failureCause); } sb.append(']'); return sb.toString(); } @Override public String toString() { return ("RequestHandledEvent: " + getDescription()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy