|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.plugin.impl.AbstractDelegatingPlugin
public abstract class AbstractDelegatingPlugin
Delegating plugin that supports easy wrapping Note: this class has a natural ordering that is inconsistent with equals
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface com.atlassian.plugin.Plugin |
|---|
Plugin.EnabledMetricsSource, Plugin.Resolvable |
| Nested classes/interfaces inherited from interface com.atlassian.plugin.Plugin.Resolvable |
|---|
Plugin.Resolvable.Default |
| Nested classes/interfaces inherited from interface com.atlassian.plugin.Plugin.EnabledMetricsSource |
|---|
Plugin.EnabledMetricsSource.Default |
| Field Summary |
|---|
| Fields inherited from interface com.atlassian.plugin.Plugin |
|---|
NAME_COMPARATOR, VERSION_1, VERSION_2, VERSION_3 |
| Constructor Summary | |
|---|---|
AbstractDelegatingPlugin(Plugin delegate)
|
|
| Method Summary | ||
|---|---|---|
void |
addModuleDescriptor(ModuleDescriptor<?> moduleDescriptor)
|
|
void |
close()
Free any resources held by this plugin. |
|
int |
compareTo(Plugin o)
|
|
boolean |
containsSystemModule()
|
|
void |
disable()
Disables the plugin. |
|
void |
enable()
Enables the plugin. |
|
Set<String> |
getActivePermissions()
|
|
ClassLoader |
getClassLoader()
Get the classloader for the plugin. |
|
Date |
getDateEnabled()
Obtain the date that the plugin system most recently completed enabling of this plugin. |
|
Date |
getDateEnabling()
Obtain the date that the plugin system most recently commenced enabling this plugin. |
|
Date |
getDateInstalled()
The date this plugin was installed into the system, is the same as the loaded date for non artifact backed plugins |
|
Date |
getDateLoaded()
The date this plugin was loaded into the system. |
|
Plugin |
getDelegate()
|
|
String |
getI18nNameKey()
Returns the i18nKey used to get an internationalised name for this plugin. |
|
InstallationMode |
getInstallationMode()
Gets the installation mode |
|
String |
getKey()
|
|
ModuleDescriptor<?> |
getModuleDescriptor(String key)
Get the ModuleDescriptor for a particular key. |
|
Collection<ModuleDescriptor<?>> |
getModuleDescriptors()
Get the Collection of descriptors. |
|
|
getModuleDescriptorsByModuleClass(Class<M> moduleClass)
Get the descriptors whose module class implements or is assignable from the supplied Class. |
|
String |
getName()
Returns the non-localised name of this plugin if defined. |
|
PluginInformation |
getPluginInformation()
|
|
PluginState |
getPluginState()
Returns this plugin's current state. |
|
int |
getPluginsVersion()
Gets the version of the plugins system to handle this plugin |
|
Set<String> |
getRequiredPlugins()
|
|
URL |
getResource(String path)
Retrieve the URL of the resource from the plugin. |
|
InputStream |
getResourceAsStream(String name)
Load a given resource from the plugin. |
|
ResourceDescriptor |
getResourceDescriptor(String type,
String name)
Get a ResourceDescriptor of a particular type and name. |
|
List<ResourceDescriptor> |
getResourceDescriptors()
Get a List of all the descriptors
. |
|
List<ResourceDescriptor> |
getResourceDescriptors(String type)
Get a list of all descriptors of a particular
type. |
|
ResourceLocation |
getResourceLocation(String type,
String name)
Get a ResourceLocation of a particular type and name. |
|
boolean |
hasAllPermissions()
|
|
void |
install()
Installs the plugin into any internal, managing container. |
|
boolean |
isBundledPlugin()
Whether the plugin is a "bundled" plugin that can't be removed. |
|
boolean |
isDeleteable()
Should the plugin file be deleted on unistall? |
|
boolean |
isDynamicallyLoaded()
Whether or not this plugin is loaded dynamically at runtime. |
|
boolean |
isEnabled()
|
|
boolean |
isEnabledByDefault()
|
|
boolean |
isSystemPlugin()
Whether the plugin is a "system" plugin that shouldn't be made visible to the user. |
|
boolean |
isUninstallable()
Whether or not this plugin can be 'uninstalled'. |
|
|
loadClass(String clazz,
Class<?> callingClass)
Get the plugin to load a specific class. |
|
void |
resolve()
Perform any required resolution. |
|
void |
setEnabled(boolean enabled)
|
|
void |
setEnabledByDefault(boolean enabledByDefault)
|
|
void |
setI18nNameKey(String i18nNameKey)
Sets the i18nKey used to get an internationalised name for this plugin. |
|
void |
setKey(String aPackage)
|
|
void |
setName(String name)
Sets the non-localised name of this plugin. |
|
void |
setPluginInformation(PluginInformation pluginInformation)
|
|
void |
setPluginsVersion(int version)
Sets the version of the plugins system |
|
void |
setResources(Resourced resources)
|
|
void |
setSystemPlugin(boolean system)
|
|
String |
toString()
|
|
void |
uninstall()
Uninstalls the plugin from any internal container. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public AbstractDelegatingPlugin(Plugin delegate)
| Method Detail |
|---|
public int getPluginsVersion()
Plugin
getPluginsVersion in interface Pluginpublic void setPluginsVersion(int version)
Plugin
setPluginsVersion in interface Pluginversion - The versionpublic String getName()
Plugin This corresponds to the value of the name field in the plugin's XML configuration file.
You would expect a plugin developer to fill in one of either name, or i18n-name-key,
but the framework does no validation and makes no guarantees that this is the case.
getName in interface PluginPlugin.getI18nNameKey()public void setName(String name)
Plugin
setName in interface Pluginname - the name.Plugin.getName()public String getI18nNameKey()
Plugin This corresponds to the value of the i18n-name-key field in the plugin's XML configuration file.
You would expect a plugin developer to fill in one of either name, or i18n-name-key,
but the framework does no validation and makes no guarantees that this is the case.
getI18nNameKey in interface PluginPlugin.getName()public void setI18nNameKey(String i18nNameKey)
Plugin
setI18nNameKey in interface Plugini18nNameKey - the i18n Name Key.Plugin.getI18nNameKey()public String getKey()
getKey in interface Pluginpublic void setKey(String aPackage)
setKey in interface Pluginpublic void addModuleDescriptor(ModuleDescriptor<?> moduleDescriptor)
addModuleDescriptor in interface Pluginpublic Collection<ModuleDescriptor<?>> getModuleDescriptors()
PluginCollection of descriptors.
The iteration order of the collection is the order that the modules will be enabled, and should be the same order that the modules appear in the plugin descriptor.
getModuleDescriptors in interface Pluginpublic ModuleDescriptor<?> getModuleDescriptor(String key)
PluginModuleDescriptor for a particular key. Returns null if the plugin does not exist.
Note: The ModuleDescriptor.getModule() may throw ClassCastException if the expected type is incorrect.
getModuleDescriptor in interface Pluginkey - the String complete key of the module, in the form "org.example.plugin:module-key".
ModuleDescriptor of the expected type.public <M> List<ModuleDescriptor<M>> getModuleDescriptorsByModuleClass(Class<M> moduleClass)
Plugindescriptors whose module class implements or is assignable from the supplied Class.
Note: The ModuleDescriptor.getModule() may throw ClassCastException if the expected type is incorrect.
Normally this method would not be supplied with anything other than Object or <?>, unless you are
confident in the super type of the module classes this Plugin provides.
getModuleDescriptorsByModuleClass in interface PluginM - The expected module type of the returned descriptors.moduleClass - the super class the descriptors return.
List of descriptors of the expected type.public InstallationMode getInstallationMode()
Plugin
getInstallationMode in interface Pluginpublic boolean isEnabledByDefault()
isEnabledByDefault in interface Pluginpublic void setEnabledByDefault(boolean enabledByDefault)
setEnabledByDefault in interface Pluginpublic PluginInformation getPluginInformation()
getPluginInformation in interface Pluginpublic void setPluginInformation(PluginInformation pluginInformation)
setPluginInformation in interface Pluginpublic void setResources(Resourced resources)
setResources in interface Pluginpublic PluginState getPluginState()
Plugin
getPluginState in interface Pluginpublic boolean isEnabled()
isEnabled in interface Plugintrue if this plugin is enabled.public boolean isSystemPlugin()
Plugin
isSystemPlugin in interface Plugintrue if this plugin is a "system" plugin.public boolean containsSystemModule()
containsSystemModule in interface Pluginpublic void setSystemPlugin(boolean system)
setSystemPlugin in interface Pluginsystem - whether the plugin is a "system" plugin that shouldn't be made visible to the user.public boolean isBundledPlugin()
Plugin
isBundledPlugin in interface Plugintrue if this plugin is a "bundled" plugin.public Date getDateLoaded()
Plugin
getDateLoaded in interface Pluginpublic Date getDateInstalled()
Plugin
getDateInstalled in interface Plugin@ExperimentalApi public Date getDateEnabling()
Plugin.EnabledMetricsSource
getDateEnabling in interface Plugin.EnabledMetricsSourcePluginState.ENABLING.@ExperimentalApi public Date getDateEnabled()
Plugin.EnabledMetricsSource
getDateEnabled in interface Plugin.EnabledMetricsSourcePluginState.ENABLED,
if this was not before the most recent PluginState.ENABLING, otherwise null.public boolean isUninstallable()
Plugin
isUninstallable in interface Plugintrue if this plugin can be 'uninstalled'.public boolean isDeleteable()
Plugin
isDeleteable in interface Plugintrue if this plugin file should be deleted on unistall.public boolean isDynamicallyLoaded()
Plugin
isDynamicallyLoaded in interface Plugintrue if this plugin is loaded dynamically at runtime.
public <T> Class<T> loadClass(String clazz,
Class<?> callingClass)
throws ClassNotFoundException
Plugin
loadClass in interface Pluginclazz - The name of the class to be loadedcallingClass - The class calling the loading (used to help find a classloader)
ClassNotFoundException - if the class cannot be located.public ClassLoader getClassLoader()
Plugin
getClassLoader in interface Pluginpublic URL getResource(String path)
Plugin
getResource in interface Pluginpath - the name of the resource to be loaded
public InputStream getResourceAsStream(String name)
Plugin
getResourceAsStream in interface Pluginname - The name of the resource to be loaded.
public void setEnabled(boolean enabled)
setEnabled in interface Pluginenabled - new enabled statepublic void close()
PluginPlugin.
close in interface Pluginpublic void install()
PluginPluginState.INSTALLED state. If the plugin is already
in the PluginState.INSTALLED state, nothing will happen.
install in interface Pluginpublic void uninstall()
PluginPluginState.UNINSTALLED state. If the plugin is already
in the PluginState.UNINSTALLED state, nothing will happen.
uninstall in interface Pluginpublic void enable()
PluginPluginState.ENABLING or PluginState.ENABLED state. If the plugin is already in the
PluginState.ENABLING or PluginState.ENABLED state, nothing will happen.
enable in interface Pluginpublic void disable()
PluginPluginState.DISABLED
state. If the plugin is already in the PluginState.DISABLED state, nothing will happen.
disable in interface Pluginpublic Set<String> getRequiredPlugins()
getRequiredPlugins in interface Pluginpublic List<ResourceDescriptor> getResourceDescriptors()
ResourcedList of all the descriptors
.
Note: since 2.2 this list must be immutable, previously modifying this list could modify the underlying list.
getResourceDescriptors in interface Resourcedpublic List<ResourceDescriptor> getResourceDescriptors(String type)
Resourceddescriptors of a particular
type.
Note: since 2.2 this list must be immutable, previously this list was modifiable but modifications would not be reflected in the underlying list.
getResourceDescriptors in interface Resourced
public ResourceDescriptor getResourceDescriptor(String type,
String name)
ResourcedResourceDescriptor of a particular type and name.
getResourceDescriptor in interface Resourced
public ResourceLocation getResourceLocation(String type,
String name)
ResourcedResourceLocation of a particular type and name.
getResourceLocation in interface Resourcedpublic int compareTo(Plugin o)
compareTo in interface Comparable<Plugin>public Plugin getDelegate()
public String toString()
toString in class Objectpublic Set<String> getActivePermissions()
getActivePermissions in interface Pluginpublic boolean hasAllPermissions()
hasAllPermissions in interface Plugintrue if the plugin has all the permissionspublic void resolve()
Plugin.Resolvable
resolve in interface Plugin.Resolvable
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||