| java.lang.Object | |
| ↳ | com.atlassian.jira.project.version.OfBizVersionStore |
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Deletes all versions in a given project by removing them from database.
| |||||||||||
Deletes given Version object by removing it from database.
| |||||||||||
Returns a list of GenericValues representing all Versions in JIRA, ordered by sequence.
| |||||||||||
Returns a list of GenericValues representing all Versions in JIRA with a given name, case insensitively.
| |||||||||||
Returns a list of GenericValues representing all Versions in a project.
| |||||||||||
Stores an individual Version in the DB.
| |||||||||||
Stores a collection of Version objects.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||||||||||||||||||||
From interface
com.atlassian.jira.project.version.VersionStore
| |||||||||||||||||||||||||||||
Deletes all versions in a given project by removing them from database.
| projectId | of the project in which the versions will be deleted. |
|---|
Deletes given Version object by removing it from database.
| version | to be deleted |
|---|
Returns a list of GenericValues representing all Versions in JIRA, ordered by sequence.
Returns a list of GenericValues representing all Versions in JIRA with a given name, case insensitively.
| name | Version name |
|---|
Returns a list of GenericValues representing all Versions in a project.
| projectId | Project Id |
|---|
Stores an individual Version in the DB.
If you want to store a collection of Versions, consider using storeVersions(Collection, it can be more efficient.
| version | The Version to store. |
|---|
Stores a collection of Version objects.
This method can have performance benefits over calling storeVersion() multiple times.
eg the CachingVersionStore will reload the cache from DB with every call to storeVersion().
| versions | Collection of Version objects. |
|---|

