Skip to content

Commit

Permalink
Merge pull request #1054 from anusreelakshmi934/Issue#1030
Browse files Browse the repository at this point in the history
servlet.FilterDiagnosticsCollector : Removed unused unqualified names
  • Loading branch information
anusreelakshmi934 authored Nov 4, 2024
2 parents 9adbf9e + 1491b8b commit efe3fed
Showing 1 changed file with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2022 IBM Corporation, Pengyu Xiong and others.
* Copyright (c) 2020, 2024 IBM Corporation, Pengyu Xiong and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand All @@ -16,30 +16,20 @@
public class ServletConstants {

/* @WEBListener */
public static final String WEB_LISTENER = "WebListener";
public static final String WEB_LISTENER_FQ_NAME = "jakarta.servlet.annotation.WebListener";
public static final String SERVLET_CONTEXT_LISTENER = "ServletContextListener";
public static final String SERVLET_CONTEXT_LISTENER_FQ_NAME = "jakarta.servlet.ServletContextListener";
public static final String SERVLET_CONTEXT_ATTRIBUTE_LISTENER = "ServletContextAttributeListener";
public static final String SERVLET_CONTEXT_ATTRIBUTE_LISTENER_FQ_NAME = "jakarta.servlet.ServletContextAttributeListener";
public static final String SERVLET_REQUEST_LISTENER = "ServletRequestListener";
public static final String SERVLET_REQUEST_LISTENER_FQ_NAME = "jakarta.servlet.ServletRequestListener";
public static final String SERVLET_REQUEST_ATTRIBUTE_LISTENER = "ServletRequestAttributeListener";
public static final String SERVLET_REQUEST_ATTRIBUTE_LISTENER_FQ_NAME = "jakarta.servlet.ServletRequestAttributeListener";
public static final String HTTP_SESSION_LISTENER = "HttpSessionListener";
public static final String HTTP_SESSION_LISTENER_FQ_NAME = "jakarta.servlet.http.HttpSessionListener";
public static final String HTTP_SESSION_ATTRIBUTE_LISTENER = "HttpSessionAttributeListener";
public static final String HTTP_SESSION_ATTRIBUTE_LISTENER_FQ_NAME = "jakarta.servlet.http.HttpSessionAttributeListener";
public static final String HTTP_SESSION_ID_LISTENER = "HttpSessionIdListener";
public static final String HTTP_SESSION_ID_LISTENER_FQ_NAME = "jakarta.servlet.http.HttpSessionIdListener";

/* @WEBServlet */
public static final String WEB_SERVLET = "WebServlet";
public static final String WEB_SERVLET_FQ_NAME = "jakarta.servlet.annotation.WebServlet";
public static final String HTTP_SERVLET = "HttpServlet";

/* @WEBFilter */
public static final String WEBFILTER = "WebFilter";
public static final String WEBFILTER_FQ_NAME = "jakarta.servlet.annotation.WebFilter";
public static final String FILTER = "Filter";
public static final String FILTER_FQ_NAME = "jakarta.servlet.Filter";
Expand Down

0 comments on commit efe3fed

Please sign in to comment.