public interface MacroMetadataManager
Modifier and Type | Method and Description |
---|---|
Set<MacroMetadata> |
getAllMacroMetadata()
Retrieve all available metadata for macros in the system.
|
Set<MacroSummary> |
getAllMacroSummaries()
Return summaries of all macros in the system.
|
MacroMetadata |
getMacroMetadataByName(String macroName)
Retrieve the metadata for a single macro.
|
MacroMetadata |
getMacroMetadataByNameAndId(String macroName,
String alternateId)
Retrieve the metadata for a single macro.
|
Map<String,MacroParameter> |
getParameters(String macroName)
Retrieve the parameter information for a single macro.
|
Map<String,MacroParameterType> |
getParameterTypes(String macroName)
Retrieve the parameter type information for a single macro.
|
Set<MacroMetadata> getAllMacroMetadata()
Set<MacroSummary> getAllMacroSummaries()
MacroMetadata getMacroMetadataByName(String macroName)
macroName
- the (simple, unfriendly) name of the macro, as will be returned by
MacroMetadata.getMacroName()
or MacroDefinition.getName()
.MacroMetadata getMacroMetadataByNameAndId(String macroName, String alternateId)
macroName
- the (simple, unfriendly) name of the macro, as will be returned by
MacroMetadata.getMacroName()
or MacroDefinition.getName()
.alternateId
- additional identification for macros where the macroName is not sufficient. This will
be ignored, if null.Map<String,MacroParameterType> getParameterTypes(String macroName)
macroName
- the name of the macro, as will be returned by MacroMetadata.getMacroName()
or
MacroDefinition.getName()
.Map<String,MacroParameter> getParameters(String macroName)
macroName
- the name of the macro, as will be returned by MacroMetadata.getMacroName()
or
MacroDefinition.getName()
.Copyright © 2003–2015 Atlassian. All rights reserved.