DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Branding for the Web Console can be provided in two ways: By registering a BrandingPlugin service or by providing a branding properties files. The Web Console uses the branding from the BrandingPlugin service registered with the highest ranking.
The BrandingPlugin interface provides the following information used for branding:
| Code Block |
|---|
// Returns an indicative name of the branding plugin
String getBrandName();
// Returns the name of the product in which the web console is contained
// and to which the web console is branded.
String getProductName();
// Returns an (absolute) URL to a web site representing the product to
// which the web console is branded.
String getProductURL();
// Returns an absolute path to an image to be rendered as the logo of the
// branding product.
String getProductImage();
// Returns the name of the branding product vendor.
String getVendorName();
// Returns an (absolute) URL to the web site of the branding product
// vendor.
String getVendorURL();
// Returns an absolute path to an image to be rendered as the logo of the
// branding product vendor.
String getVendorImage();
// Returns the absolute path to an icon to be used as the web console
// "favicon".
String getFavIcon();
// Returns the absolute path to a CSS file to be used as the main CSS for
// the basic admin site.
String getMainStyleSheet();
|
If no BrandingPlugin service is registered, the DefaultBrandingPlugin is used.
...