Package org.apache.felix.webconsole
Interface BrandingPlugin
-
- All Known Implementing Classes:
DefaultBrandingPlugin
@Deprecated(since="2021-04-30") public interface BrandingPluginDeprecated.The Apache Felix Webconsole is not supported in Cloud environments.TheBrandingPluginis the service interface for the most elaborate way of branding the web console.- See Also:
DefaultBrandingPlugin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetBrandName()Deprecated.Returns an indicative name of the branding plugin.java.lang.StringgetFavIcon()Deprecated.Returns the absolute path to an icon to be used as the web console "favicon".java.lang.StringgetMainStyleSheet()Deprecated.Returns the absolute path to a CSS file to be used as the main CSS for the basic admin site.java.lang.StringgetProductImage()Deprecated.Returns an absolute path to an image to be rendered as the logo of the branding product.java.lang.StringgetProductName()Deprecated.Returns the name of the product in which the web console is contained and to which the web console is branded.java.lang.StringgetProductURL()Deprecated.Returns an (absolute) URL to a web site representing the product to which the web console is branded.java.lang.StringgetVendorImage()Deprecated.Returns an absolute path to an image to be rendered as the logo of the branding product vendor.java.lang.StringgetVendorName()Deprecated.Returns the name of the branding product vendor.java.lang.StringgetVendorURL()Deprecated.Returns an (absolute) URL to the web site of the branding product vendor.
-
-
-
Method Detail
-
getBrandName
java.lang.String getBrandName()
Deprecated.Returns an indicative name of the branding plugin. This value is used as the Window/Page title together with the title of the respective plugin.- Returns:
- the name of the branding plugin
-
getProductName
java.lang.String getProductName()
Deprecated.Returns the name of the product in which the web console is contained and to which the web console is branded.- Returns:
- the product name
-
getProductURL
java.lang.String getProductURL()
Deprecated.Returns an (absolute) URL to a web site representing the product to which the web console is branded.- Returns:
- the product URL
-
getProductImage
java.lang.String getProductImage()
Deprecated.Returns an absolute path to an image to be rendered as the logo of the branding product.- Returns:
- a path to an image - usually the product logo
-
getVendorName
java.lang.String getVendorName()
Deprecated.Returns the name of the branding product vendor.- Returns:
- the product vendor
-
getVendorURL
java.lang.String getVendorURL()
Deprecated.Returns an (absolute) URL to the web site of the branding product vendor.- Returns:
- the URL of the product vendor
-
getVendorImage
java.lang.String getVendorImage()
Deprecated.Returns an absolute path to an image to be rendered as the logo of the branding product vendor.- Returns:
- the company logo
-
getFavIcon
java.lang.String getFavIcon()
Deprecated.Returns the absolute path to an icon to be used as the web console "favicon".- Returns:
- path to an image, that is shown as favorite icon in the web browser
-
getMainStyleSheet
java.lang.String getMainStyleSheet()
Deprecated.Returns the absolute path to a CSS file to be used as the main CSS for the basic admin site.- Returns:
- a path to a custom CSS. Used to override the default web console styling
-
-