public class

DefaultPluggableFooter

extends Object
implements PluggableFooter
java.lang.Object
   ↳ com.atlassian.jira.plugin.navigation.DefaultPluggableFooter

Class Overview

Default implementation of PluggableFooter.

Summary

Public Constructors
DefaultPluggableFooter()
Public Methods
String getFullFooterHtml(HttpServletRequest request)
Get the footer HTML to present on a page that utilizes 100% of the page width.
String getSmallFooterHtml(HttpServletRequest request)
Get the footer HTML to present on a page that does not utilize 100% of the page width.
void init(FooterModuleDescriptor descriptor)
This is called when the controling module descriptor is initialized and enabled.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.plugin.navigation.PluggableFooter

Public Constructors

public DefaultPluggableFooter ()

Public Methods

public String getFullFooterHtml (HttpServletRequest request)

Get the footer HTML to present on a page that utilizes 100% of the page width.

Parameters
request the request that is asking for the html.
Returns
  • the html to be rendered.

public String getSmallFooterHtml (HttpServletRequest request)

Get the footer HTML to present on a page that does not utilize 100% of the page width.

Parameters
request the request that is asking for the html.
Returns
  • the html to be rendered.

public void init (FooterModuleDescriptor descriptor)

This is called when the controling module descriptor is initialized and enabled.

Parameters
descriptor is the controling module descriptor.