com.atlassian.jira.plugin.navigation
Interface PluggableFooter

All Known Implementing Classes:
DefaultPluggableFooter

public interface PluggableFooter

A plugin to render the footer in JIRA.

Since:
v3.12

Method Summary
 String getFullFooterHtml(javax.servlet.http.HttpServletRequest request)
          Get the footer HTML to present on a page that utilizes 100% of the page width.
 String getSmallFooterHtml(javax.servlet.http.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.
 

Method Detail

init

void init(FooterModuleDescriptor descriptor)
This is called when the controling module descriptor is initialized.

Parameters:
descriptor - is the controling module descriptor.
Since:
v3.12

getFullFooterHtml

String getFullFooterHtml(javax.servlet.http.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.
Since:
v3.12

getSmallFooterHtml

String getSmallFooterHtml(javax.servlet.http.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.
Since:
v3.12


Copyright © 2002-2008 Atlassian. All Rights Reserved.