public interface

JqlFunctionModuleDescriptor

implements JiraResourcedModuleDescriptor<T>
com.atlassian.jira.plugin.jql.function.JqlFunctionModuleDescriptor
Known Indirect Subclasses

Class Overview

A module descriptor for a JQL function handler that produces a JqlFunction. The following is an example XML descriptor for a JQL function:


 <jql-function key="now-jql-function"
          i18n-name-key="jql.function.plugin.now.name"
          name="Now Function"
          class="com.atlassian.jira.plugin.jql.function.NowFunction"
          >
      <description key="jql.function.plugin.now.desc">Returns the current system time.</description>
      <fname>now</fname>
      <list>false</list>
 </jql-function>

 
The fname element specifies the name of the function. The list element specifies whether this function returns a list of values or a single value. If omitted, the default is false.

Summary

Public Methods
String getFunctionName()
boolean isList()
[Expand]
Inherited Methods
From interface com.atlassian.jira.plugin.JiraResourcedModuleDescriptor
From interface com.atlassian.plugin.ModuleDescriptor
From interface com.atlassian.plugin.Resourced

Public Methods

public String getFunctionName ()

public boolean isList ()