public class DefaultMacroMetadataManager extends Object implements MacroMetadataManager
MacroMetadata about the Macros in Confluence.| Constructor and Description |
|---|
DefaultMacroMetadataManager(com.atlassian.plugin.PluginAccessor pluginAccessor)
Deprecated.
@since 5.9.
|
DefaultMacroMetadataManager(com.atlassian.plugin.PluginAccessor pluginAccessor,
com.atlassian.event.api.EventListenerRegistrar eventListenerRegistrar) |
| Modifier and Type | Method and Description |
|---|---|
void |
destroy() |
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.
|
void |
init() |
void |
onPluginFrameworkStartedEvent(AsyncPluginFrameworkStartedEvent event) |
@Deprecated public DefaultMacroMetadataManager(com.atlassian.plugin.PluginAccessor pluginAccessor)
public DefaultMacroMetadataManager(com.atlassian.plugin.PluginAccessor pluginAccessor,
com.atlassian.event.api.EventListenerRegistrar eventListenerRegistrar)
@PostConstruct public void init()
@PreDestroy public void destroy()
@EventListener public void onPluginFrameworkStartedEvent(AsyncPluginFrameworkStartedEvent event)
@Nonnull public Set<MacroMetadata> getAllMacroMetadata()
MacroMetadataManagergetAllMacroMetadata in interface MacroMetadataManager@Nonnull public Set<MacroSummary> getAllMacroSummaries()
MacroMetadataManagergetAllMacroSummaries in interface MacroMetadataManagerpublic MacroMetadata getMacroMetadataByName(String macroName)
MacroMetadataManagergetMacroMetadataByName in interface MacroMetadataManagermacroName - the (simple, unfriendly) name of the macro, as will be returned by
MacroMetadata.getMacroName() or MacroDefinition.getName().public MacroMetadata getMacroMetadataByNameAndId(String macroName, String alternateId)
MacroMetadataManagergetMacroMetadataByNameAndId in interface MacroMetadataManagermacroName - 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.@Nonnull public Map<String,MacroParameterType> getParameterTypes(String macroName)
MacroMetadataManagergetParameterTypes in interface MacroMetadataManagermacroName - the name of the macro, as will be returned by MacroMetadata.getMacroName() or
MacroDefinition.getName().@Nonnull public Map<String,MacroParameter> getParameters(String macroName)
MacroMetadataManagergetParameters in interface MacroMetadataManagermacroName - the name of the macro, as will be returned by MacroMetadata.getMacroName() or
MacroDefinition.getName().Copyright © 2003–2017 Atlassian. All rights reserved.