Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix embedded faces init #25287

Merged
merged 3 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021 Contributors to Eclipse Foundation.
* Copyright (c) 2021, 2024 Contributors to Eclipse Foundation.
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -71,8 +71,7 @@ public final class Constants {
/**
* The Eclipse WASP Pages servlet class name.
*/
public static final String APACHE_JSP_SERVLET_CLASS =
"org.glassfish.wasp.servlet.JspServlet";
public static final String APACHE_JSP_SERVLET_CLASS = "org.glassfish.wasp.servlet.JspServlet";

public static final String JSP_URL_PATTERN="*.jsp";

Expand All @@ -82,25 +81,22 @@ public final class Constants {

public static final String ACCESS_LOG_PROPERTY = "accesslog";

public static final String ACCESS_LOG_BUFFER_SIZE_PROPERTY =
"accessLogBufferSize";
public static final String ACCESS_LOG_BUFFER_SIZE_PROPERTY = "accessLogBufferSize";

public static final String ACCESS_LOG_WRITE_INTERVAL_PROPERTY =
"accessLogWriteInterval";
public static final String ACCESS_LOG_WRITE_INTERVAL_PROPERTY = "accessLogWriteInterval";

public static final String ACCESS_LOGGING_ENABLED = "accessLoggingEnabled";

public static final String SSO_ENABLED = "sso-enabled";

public static final String ERROR_REPORT_VALVE = "errorReportValve";

// services attribute in ServletContext
public static final String HABITAT_ATTRIBUTE = "org.glassfish.servlet.habitat";
// Services attribute in ServletContext
public static final String SERVICE_LOCATOR_ATTRIBUTE = "org.glassfish.servlet.habitat";

// WebModule attributes in ServletContext
// available only during ServletContextListener.contextInitialized
public static final String DEPLOYMENT_CONTEXT_ATTRIBUTE =
"com.sun.enterprise.web.WebModule.DeploymentContext";
public static final String DEPLOYMENT_CONTEXT_ATTRIBUTE = "com.sun.enterprise.web.WebModule.DeploymentContext";
public static final String IS_DISTRIBUTABLE_ATTRIBUTE = "com.sun.enterprise.web.WebModule.isDistributable";
public static final String ENABLE_HA_ATTRIBUTE = "com.sun.enterprise.web.WebModule.enableHA";
}
Loading