|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.confluence.macro.xhtml.UserMacroPluginMacroManager
public class UserMacroPluginMacroManager
A MacroManager responsible for keeping track of user macros loaded via the plugin subsystem. Listens for
PluginModuleEnabledEvent and
PluginModuleDisabledEvent to register
GenericVelocityMacros with itself.
All macros will be wrapped in a LazyLoadingMacroWrapper.
| Constructor Summary | |
|---|---|
UserMacroPluginMacroManager(com.atlassian.event.api.EventPublisher eventPublisher)
|
|
| Method Summary | |
|---|---|
com.atlassian.util.concurrent.LazyReference<Macro> |
createLazyMacroReference(com.atlassian.plugin.ModuleDescriptor<?> moduleDescriptor)
Macros are lazy loaded to avoid plugin module ordering problems like CONF-13386. |
Macro |
getMacroByName(String macroName)
Gives the Macro registered with the
given name, or null if there is none registered with the manager. |
void |
pluginModuleDisabled(com.atlassian.plugin.event.events.PluginModuleDisabledEvent event)
|
void |
pluginModuleEnabled(com.atlassian.plugin.event.events.PluginModuleEnabledEvent event)
|
void |
registerMacro(String name,
Macro macro)
Registers a new macro with the given name. |
void |
setPluginEventManager(com.atlassian.plugin.event.PluginEventManager pluginEventManager)
|
void |
unregisterMacro(String name)
Unregisters the macro with the given name. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public UserMacroPluginMacroManager(com.atlassian.event.api.EventPublisher eventPublisher)
| Method Detail |
|---|
public Macro getMacroByName(@NotNull
String macroName)
MacroManagerMacro registered with the
given name, or null if there is none registered with the manager.
getMacroByName in interface MacroManagermacroName - The macro to get.
public void registerMacro(@NotNull
String name,
@NotNull
Macro macro)
MacroManager
registerMacro in interface MacroManagername - the name to register the macro under. For example, 'code'.macro - the macro to register
public void unregisterMacro(@NotNull
String name)
MacroManager
unregisterMacro in interface MacroManagername - the name of the macro to unregister. For example, 'code'.public void pluginModuleEnabled(com.atlassian.plugin.event.events.PluginModuleEnabledEvent event)
public void pluginModuleDisabled(com.atlassian.plugin.event.events.PluginModuleDisabledEvent event)
public com.atlassian.util.concurrent.LazyReference<Macro> createLazyMacroReference(com.atlassian.plugin.ModuleDescriptor<?> moduleDescriptor)
MacroManager
createLazyMacroReference in interface MacroManagermoduleDescriptor - describes the macro we are creating a lazy reference to.
public void setPluginEventManager(com.atlassian.plugin.event.PluginEventManager pluginEventManager)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||