Uses of Class
org.jivesoftware.util.Version
-
Packages that use Version Package Description org.jivesoftware.openfire org.jivesoftware.openfire.container The microkernel core of the server is a simple, flexible, nested container framework defined in this package.org.jivesoftware.openfire.spi org.jivesoftware.openfire.update Classes that provide the "check for update" service or the "get available plugins" service.org.jivesoftware.util Utility classes. -
-
Uses of Version in org.jivesoftware.openfire
Methods in org.jivesoftware.openfire that return Version Modifier and Type Method Description Version
XMPPServerInfo. getVersion()
Obtain the server's version information. -
Uses of Version in org.jivesoftware.openfire.container
Methods in org.jivesoftware.openfire.container that return Version Modifier and Type Method Description Version
PluginMetadata. getMinServerVersion()
static Version
PluginMetadataHelper. getMinServerVersion(Path pluginDir)
Returns the minimum server version this plugin can run within.static Version
PluginMetadataHelper. getMinServerVersion(Plugin plugin)
Returns the minimum server version this plugin can run within.Version
PluginMetadata. getPriorToServerVersion()
static Version
PluginMetadataHelper. getPriorToServerVersion(Path pluginDir)
Returns the server version up, but not including, in which this plugin can run within.static Version
PluginMetadataHelper. getPriorToServerVersion(Plugin plugin)
Returns the server version up, but not including, in which this plugin can run within.Version
PluginMetadata. getVersion()
static Version
PluginMetadataHelper. getVersion(Path pluginDir)
Returns the version of a plugin.static Version
PluginMetadataHelper. getVersion(Plugin plugin)
Returns the version of a plugin.Constructors in org.jivesoftware.openfire.container with parameters of type Version Constructor Description PluginMetadata(String name, String canonicalName, String description, Version version, String author, URL icon, URL changelog, URL readme, String license, Version minServerVersion, Version priorToServerVersion, JavaSpecVersion minJavaVersion, boolean csrfProtectionEnabled)
-
Uses of Version in org.jivesoftware.openfire.spi
Fields in org.jivesoftware.openfire.spi declared as Version Modifier and Type Field Description static Version
XMPPServerInfoImpl. VERSION
Methods in org.jivesoftware.openfire.spi that return Version Modifier and Type Method Description Version
XMPPServerInfoImpl. getVersion()
-
Uses of Version in org.jivesoftware.openfire.update
Methods in org.jivesoftware.openfire.update with parameters of type Version Modifier and Type Method Description Update
UpdateManager. getPluginUpdate(String pluginName, Version currentVersion)
Returns the plugin update ornull
if the plugin is up to date.Constructors in org.jivesoftware.openfire.update with parameters of type Version Constructor Description AvailablePlugin(String name, String canonicalName, String description, Version latestVersion, String author, URL icon, URL changelog, URL readme, String license, Version minServerVersion, Version priorToServerVersion, JavaSpecVersion minJavaVersion, URL downloadUrl, long fileSize, String releaseDate)
-
Uses of Version in org.jivesoftware.util
Methods in org.jivesoftware.util that return Version Modifier and Type Method Description Version
Version. ignoringReleaseStatus()
Methods in org.jivesoftware.util with parameters of type Version Modifier and Type Method Description int
Version. compareTo(Version that)
boolean
Version. isNewerThan(Version otherVersion)
Convenience method for comparing versions
-