java.lang.Object | |
↳ | com.atlassian.jira.issue.worklog.OfBizWorklogStore |
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | WORKLOG_ENTITY |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new worklog in the data store based on the values in the passed in Worklog object.
| |||||||||||
Deletes a worklog from the data store based on the passed in id.
| |||||||||||
Returns a worklog specified by it's id
| |||||||||||
Returns all child worklogs of a specified issue
| |||||||||||
Returns the count of all
Worklog 's that have a visibility restriction
of the provided group. | |||||||||||
Updates
Worklog 's such that worklogs that have a visibility
restriction of the provided groupName will be changed to have a visibility restriction of the
provided swapGroup. | |||||||||||
Updates fields of an existing worklog in the datastore (identified by its id) with the supplied worklog.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||||
![]()
|
Creates a new worklog in the data store based on the values in the passed in Worklog object.
worklog | specifies the values to create the worklog with. |
---|
Deletes a worklog from the data store based on the passed in id.
worklogId | specifies which worklog to delete (not null) |
---|
Returns a worklog specified by it's id
id | the specified id (not null) |
---|
Returns all child worklogs of a specified issue
issue | the specified parent issue (not null) |
---|
Returns the count of all Worklog
's that have a visibility restriction
of the provided group.
groupName | identifies the group the worklogs are restricted by, this must not be null. |
---|
Updates Worklog
's such that worklogs that have a visibility
restriction of the provided groupName will be changed to have a visibility restriction of the
provided swapGroup.
Note: There is no validation performed by this method to determine if the provided swapGroup is a valid
group with JIRA. This validation must be done by the caller.
groupName | identifies the group the worklogs are restricted by, this must not be null. |
---|---|
swapGroup | identifies the group the worklogs will be changed to be restricted by, this must not be null. |
Updates fields of an existing worklog in the datastore (identified by its id) with the supplied worklog.
worklog | identifies the worklog to update and provides the updated values. |
---|