| java.lang.Object | |
| ↳ | com.atlassian.jira.plugin.OfBizPluginVersionStore |
OfBiz implementation of the PluginVersionStore.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | PLUGIN_VERSION_CREATED | ||||||||||
| String | PLUGIN_VERSION_ENTITY_NAME | ||||||||||
| String | PLUGIN_VERSION_ID | ||||||||||
| String | PLUGIN_VERSION_KEY | ||||||||||
| String | PLUGIN_VERSION_NAME | ||||||||||
| String | PLUGIN_VERSION_VERSION | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a
PluginVersion in the database. | |||||||||||
Deletes a plugin version from the datastore.
| |||||||||||
Returns a list of all
PluginVersion's. | |||||||||||
Gets the
PluginVersion specified by the id. | |||||||||||
Updates a plugin version in the datastore.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.atlassian.jira.plugin.PluginVersionStore
| |||||||||||
Creates a PluginVersion in the database. The id in the object will
be ignored.
| pluginVersion | contains the key, name, and version to be persisted. |
|---|
PluginVersion with the database id populated.Deletes a plugin version from the datastore. If the provided id does not resolve to an existing record then this method will return false and no records will be deleted.
| pluginVersionId | identifies the plugin version record to delete, not null. |
|---|
Returns a list of all PluginVersion's.
PluginVersion's.
Gets the PluginVersion specified by the id.
| pluginVersionId | identifies the plugin version record to retrieve. |
|---|
PluginVersion with the corresponding id or null if the record
is not found.
Updates a plugin version in the datastore.
| pluginVersion | contains the key, name, and version to update. The id will be used to find the record to update. |
|---|
PluginVersion that represents the updated record.