Class PluginMetadataHelper
java.lang.Object
org.jivesoftware.openfire.container.PluginMetadataHelper
Various helper methods to retrieve plugin metadat from plugin.xml files.
- Author:
- Guus der Kinderen, guus.der.kinderen@gmail.com
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StringReturns the author of a plugin.static StringReturns the author of a plugin.static StringgetCanonicalName(Path pluginPath) Returns the canonical name for the plugin, derived from the plugin directory or archive file name.static StringgetCanonicalName(Plugin plugin) Returns the canonical name for the plugin, derived from the plugin archive file name.static URLgetChangelog(Path pluginDir) static URLgetChangelog(Plugin plugin) static StringgetDatabaseKey(Path pluginDir) Returns the database schema key of a plugin, if it exists.static StringgetDatabaseKey(Plugin plugin) Returns the database schema key of a plugin, if it exists.static intgetDatabaseVersion(Path pluginDir) Returns the database schema version of a plugin, if it exists.static intgetDatabaseVersion(Plugin plugin) Returns the database schema version of a plugin, if it exists.static StringgetDescription(Path pluginDir) Returns the description of a plugin.static StringgetDescription(Plugin plugin) Returns the description of a plugin.static URLstatic URLstatic StringgetLicense(Path pluginDir) Returns the license agreement type that the plugin is governed by.static StringgetLicense(Plugin plugin) Returns the license agreement type that the plugin is governed by.static JavaSpecVersiongetMinJavaVersion(Path pluginDir) Returns the minimum Java specification version this plugin needs to run.static JavaSpecVersiongetMinJavaVersion(Plugin plugin) Returns the minimum Java specification version this plugin needs to run.static VersiongetMinServerVersion(Path pluginDir) Returns the minimum server version this plugin can run within.static VersiongetMinServerVersion(Plugin plugin) Returns the minimum server version this plugin can run within.static StringReturns the name of a plugin.static StringReturns the name of a plugin.static StringgetParentPlugin(Path pluginDir) Returns the name of the directory of the parent for this plugin.static StringgetParentPlugin(Plugin plugin) Returns the name of the directory of the parent for this plugin.static VersiongetPriorToServerVersion(Path pluginDir) Returns the server version up, but not including, in which this plugin can run within.static VersiongetPriorToServerVersion(Plugin plugin) Returns the server version up, but not including, in which this plugin can run within.static URLstatic URLstatic VersiongetVersion(Path pluginDir) Returns the version of a plugin.static VersiongetVersion(Plugin plugin) Returns the version of a plugin.static booleanisCsrfProtectionEnabled(Path pluginDir) static booleanisCsrfProtectionEnabled(Plugin plugin)
-
Constructor Details
-
PluginMetadataHelper
public PluginMetadataHelper()
-
-
Method Details
-
getParentPlugin
Returns the name of the directory of the parent for this plugin. The value is retrieved from the plugin.xml file of the plugin (which is casted down to lower-case). If the value could not be found,nullwill be returned.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the parent plugin's directory name
-
getParentPlugin
Returns the name of the directory of the parent for this plugin. The value is retrieved from the plugin.xml file of the plugin (which is casted down to lower-case). If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the parent plugin's directory name
-
getCanonicalName
Returns the canonical name for the plugin, derived from the plugin archive file name. Note that this value can be different from the 'human readable' plugin name, as returned bygetName(Path). Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's canonical name.
-
getCanonicalName
Returns the canonical name for the plugin, derived from the plugin directory or archive file name. The provided path can refer to either the plugin archive file, or the directory in which the archive was extracted. Note that this value can be different from the 'human readable' plugin name, as returned bygetName(Path).- Parameters:
pluginPath- the path of the plugin directory, or plugin archive file.- Returns:
- the plugin's canonical name.
-
getName
Returns the name of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this value is a 'human readable' name, which can be distinct from the name of the plugin directory as returned bygetCanonicalName(Path). Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's human-readable name.
-
getName
Returns the name of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this value is a 'human readable' name, which can be distinct from the name of the plugin directory as returned bygetCanonicalName(Path).- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's human-readable name.
-
getDescription
Returns the description of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's description.
-
getDescription
Returns the description of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's description.
-
getAuthor
Returns the author of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's author.
-
getAuthor
Returns the author of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's author.
-
getVersion
Returns the version of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's version.
-
getVersion
Returns the version of a plugin. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's version.
-
getMinServerVersion
Returns the minimum server version this plugin can run within. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's minimum server version (possibly null).
-
getMinServerVersion
Returns the minimum server version this plugin can run within. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's minimum server version (possibly null).
-
getPriorToServerVersion
Returns the server version up, but not including, in which this plugin can run within. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's maximum server version (possibly null).
-
getPriorToServerVersion
Returns the server version up, but not including, in which this plugin can run within. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's maximum server version (possibly null).
-
getMinJavaVersion
Returns the minimum Java specification version this plugin needs to run. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's minimum Java version (possibly null).
-
getMinJavaVersion
Returns the minimum Java specification version this plugin needs to run. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's minimum Java version (possibly null).
-
isCsrfProtectionEnabled
-
isCsrfProtectionEnabled
-
getDatabaseKey
Returns the database schema key of a plugin, if it exists. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's database schema key or
nullif it doesn't exist.
-
getDatabaseKey
Returns the database schema key of a plugin, if it exists. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,nullwill be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's database schema key or
nullif it doesn't exist.
-
getDatabaseVersion
Returns the database schema version of a plugin, if it exists. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,-1will be returned. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's database schema version or
-1if it doesn't exist.
-
getDatabaseVersion
Returns the database schema version of a plugin, if it exists. The value is retrieved from the plugin.xml file of the plugin. If the value could not be found,-1will be returned.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's database schema version or
-1if it doesn't exist.
-
getLicense
Returns the license agreement type that the plugin is governed by. The value is retrieved from the plugin.xml file of the plugin. Note that this method will return data only for plugins that have successfully been installed. To obtain data from plugin (directories) that have not (yet) been installed, refer to the overloaded method that takes a Path argument.- Parameters:
plugin- The plugin (cannot be null)- Returns:
- the plugin's license agreement.
-
getLicense
Returns the license agreement type that the plugin is governed by. The value is retrieved from the plugin.xml file of the plugin.- Parameters:
pluginDir- the path of the plugin directory.- Returns:
- the plugin's license agreement.
-
getIcon
-
getIcon
-
getReadme
-
getReadme
-
getChangelog
-
getChangelog
-