org.eclipse.jetty.osgi.OSGiWebappConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-osgi Show documentation
Show all versions of jetty-osgi Show documentation
Support for OSGi integration
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd 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
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.osgi;
/**
* OSGiWebappConstants
*
*
* Constants (MANIFEST headers, service properties etc) associated with deploying
* webapps into OSGi via Jetty.
*/
public class OSGiWebappConstants
{
/**
* service property osgi.web.symbolicname. See OSGi r4
*/
public static final String OSGI_WEB_SYMBOLICNAME = "osgi.web.symbolicname";
/**
* service property osgi.web.symbolicname. See OSGi r4
*/
public static final String OSGI_WEB_VERSION = "osgi.web.version";
/**
* service property osgi.web.contextpath. See OSGi r4
*/
public static final String OSGI_WEB_CONTEXTPATH = "osgi.web.contextpath";
/**
* See OSGi r4 p.427
*/
public static final String OSGI_BUNDLECONTEXT = "osgi-bundlecontext";
/**
* url scheme to deploy war file as bundled webapp
*/
public static final String RFC66_WAR_URL_SCHEME = "war";
/**
* Name of the header that defines the context path for the embedded webapp.
*/
public static final String RFC66_WEB_CONTEXTPATH = "Web-ContextPath";
/**
* Name of the header that defines the path to the folder where the jsp
* files are extracted.
*/
public static final String RFC66_JSP_EXTRACT_LOCATION = "Jsp-ExtractLocation";
/**
* Name of the servlet context attribute that points to the bundle context.
*/
public static final String RFC66_OSGI_BUNDLE_CONTEXT = "osgi-bundlecontext";
/**
* Name of the servlet context attribute that points to the bundle object.
* We can't always rely on the bundle-context as there might be no such thing.
*/
public static final String JETTY_OSGI_BUNDLE = "osgi-bundle";
/**
* List of relative paths within the bundle to the jetty context files.
*/
public static final String JETTY_CONTEXT_FILE_PATH = "Jetty-ContextFilePath";
/**
* path within the bundle to the folder that contains the basic resources.
*/
public static final String JETTY_WAR_RESOURCE_PATH = "Jetty-WarResourcePath";
/**
* path within a fragment hosted by a web-bundle to a folder that contains basic resources.
* the path is appended to the lookup path where jetty locates static resources
*/
public static final String JETTY_WAR_FRAGMENT_RESOURCE_PATH = "Jetty-WarFragmentResourcePath";
/**
* path within a fragment hosted by a web-bundle to a folder that contains basic resources.
* The path is prefixed to the lookup path where jetty locates static resources:
* this will override static resources with the same name in the web-bundle.
*/
public static final String JETTY_WAR_PREPEND_FRAGMENT_RESOURCE_PATH = "Jetty-WarPrependFragmentResourcePath";
/**
* installation path of webapp bundle
*/
public static final String JETTY_BUNDLE_ROOT = "bundle.root";
/**
* Extra classpath
*/
public static final String JETTY_EXTRA_CLASSPATH = "Jetty-extraClasspath";
/**
* web.xml file path
*/
public static final String JETTY_WEB_XML_PATH = "Jetty-WebXmlFilePath";
/**
* defaultweb.xml file path
*/
public static final String JETTY_DEFAULT_WEB_XML_PATH = "Jetty-defaultWebXmlFilePath";
/**
* path to the base folder that overrides the computed bundle installation
* location if not null useful to install webapps or jetty context files
* that are in fact not embedded in a bundle
*/
public static final String JETTY_BUNDLE_INSTALL_LOCATION_OVERRIDE = "Jetty-bundleInstall";
/**
* Property naming the environment (eg ee8/ee9/ee10 etc)
*/
public static final String JETTY_ENVIRONMENT = "Jetty-Environment";
/**
* Comma separated list of bundles that contain tld file used by the webapp.
*/
public static final String REQUIRE_TLD_BUNDLE = "Require-TldBundle";
/**
* Comma separated list of bundles that contain tld file used by the webapp.
* Both the name of the manifest header and the name of the service property.
*/
public static final String SERVICE_PROP_REQUIRE_TLD_BUNDLE = REQUIRE_TLD_BUNDLE;
public static final String WATERMARK = "o.e.j.o.b.watermark";
/**
* Set of extra dirs that must not be served by osgi webapps
*/
public static final String[] DEFAULT_PROTECTED_OSGI_TARGETS = {"/osgi-inf", "/osgi-opts"};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy