Package org.apache.wiki.modules
Class WikiModuleInfo
java.lang.Object
org.apache.wiki.modules.WikiModuleInfo
- All Implemented Interfaces:
Comparable<WikiModuleInfo>
- Direct Known Subclasses:
DefaultPluginManager.WikiPluginInfo
A WikiModule describes whatever JSPWiki plugin there is: it can be a plugin, an editor, a filter, etc.
- Since:
- 2.4
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
compareTo
(WikiModuleInfo mod) boolean
The WikiModuleInfo is equal to another WikiModuleInfo, if the name is equal.Returns the AdminBean class which is supposed to manage this module.Returns the name of the author of this plugin (if defined).Returns the url of the author of this plugin (if defined).The description of what this module does.Return the location of the html template for this module.Returns the maximum version of JSPWiki that this module supports.Returns the minimum version of JSPWiki that this module supports.The URL for this getting more information about this module.The current version of the implemented modulegetName()
Returns the common name for this particular module.Return the location of the script for this module.Returns the style sheet location for this module.protected String
getTextResource
(String resourceLocation) Attempts to locate a resource from a JAR file and returns it as a string.int
hashCode()
protected void
initializeFromXML
(org.jdom2.Element el) Initializes the ModuleInfo from some standard XML elements which are under the given element.
-
Field Details
-
m_name
-
m_description
-
m_moduleUrl
-
m_moduleVersion
-
m_htmlTemplate
-
m_scriptLocation
-
m_scriptText
-
m_stylesheetLocation
-
m_stylesheetText
-
m_author
-
m_authorUrl
-
m_resource
-
m_minVersion
-
m_maxVersion
-
m_adminBeanClass
-
-
Constructor Details
-
WikiModuleInfo
Create a new info container.- Parameters:
name
- The name of the module.
-
-
Method Details
-
equals
The WikiModuleInfo is equal to another WikiModuleInfo, if the name is equal. All objects are unique across JSPWiki. -
hashCode
-
initializeFromXML
Initializes the ModuleInfo from some standard XML elements which are under the given element.- Parameters:
el
- The element to parse.
-
getAdminBeanClass
Returns the AdminBean class which is supposed to manage this module.- Returns:
- A class name.
-
getName
Returns the common name for this particular module. Note that this is not the class name, nor is it an alias. For different modules the name may have different meanings.Every module defines a name, so this method should never return null.
- Returns:
- A module name.
-
getDescription
The description of what this module does.- Returns:
- A module description.
-
getModuleUrl
The URL for this getting more information about this module.- Returns:
- A module URL.
-
getModuleVersion
The current version of the implemented module- Returns:
- A module version.
-
getHtmlTemplate
Return the location of the html template for this module.- Returns:
- The path to the location.
-
getStylesheetLocation
Returns the style sheet location for this module.- Returns:
- The path to the location.
-
getScriptLocation
Return the location of the script for this module.- Returns:
- The path to the location.
-
getAuthor
Returns the name of the author of this plugin (if defined).- Returns:
- Author name, or null.
-
getAuthorUrl
Returns the url of the author of this plugin (if defined). -
getMinVersion
Returns the minimum version of JSPWiki that this module supports.- Returns:
- The minimum version.
-
getMaxVersion
Returns the maximum version of JSPWiki that this module supports.- Returns:
- The maximum version.
-
getTextResource
Attempts to locate a resource from a JAR file and returns it as a string.- Parameters:
resourceLocation
- an URI of the resource- Returns:
- The content of the file
- Throws:
IOException
- if the JAR file or the resource cannot be read
-
compareTo
- Specified by:
compareTo
in interfaceComparable<WikiModuleInfo>
-