Modifier and Type | Method and Description |
---|---|
protected Worklog |
DefaultWorklogService.create(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
Long newEstimate,
boolean dispatchEvent) |
Worklog |
DefaultWorklogService.createAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent) |
Worklog |
WorklogService.createAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent)
|
Worklog |
DefaultWorklogService.createAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent) |
Worklog |
WorklogService.createAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent)
|
Worklog |
DefaultWorklogService.createWithManuallyAdjustedEstimate(JiraServiceContext jiraServiceContext,
WorklogAdjustmentAmountResult worklogResult,
boolean dispatchEvent) |
Worklog |
WorklogService.createWithManuallyAdjustedEstimate(JiraServiceContext jiraServiceContext,
WorklogAdjustmentAmountResult worklogAdjustmentAmount,
boolean dispatchEvent)
|
Worklog |
DefaultWorklogService.createWithNewRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogNewEstimateResult worklogResult,
boolean dispatchEvent) |
Worklog |
WorklogService.createWithNewRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogNewEstimateResult worklogNewEstimate,
boolean dispatchEvent)
|
Worklog |
DefaultWorklogService.getById(JiraServiceContext jiraServiceContext,
Long id) |
Worklog |
WorklogService.getById(JiraServiceContext jiraServiceContext,
Long id)
Used to get a worklog by its id.
|
Worklog |
WorklogResult.getWorklog() |
protected Worklog |
DefaultWorklogService.update(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
Long newEstimate,
boolean dispatchEvent) |
Worklog |
DefaultWorklogService.updateAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent) |
Worklog |
WorklogService.updateAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent)
Updates the provided
Worklog . |
Worklog |
DefaultWorklogService.updateAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent) |
Worklog |
WorklogService.updateAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogResult worklogResult,
boolean dispatchEvent)
Updates the provided
Worklog . |
Worklog |
DefaultWorklogService.updateWithNewRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogNewEstimateResult worklogResult,
boolean dispatchEvent) |
Worklog |
WorklogService.updateWithNewRemainingEstimate(JiraServiceContext jiraServiceContext,
WorklogNewEstimateResult worklogNewEstimate,
boolean dispatchEvent)
Updates the provided
Worklog . |
protected Worklog |
DefaultWorklogService.validateParamsAndCreateWorklog(JiraServiceContext jiraServiceContext,
Issue issue,
ApplicationUser author,
Visibility visibility,
String timeSpent,
Date startDate,
Long worklogId,
String comment,
Date created,
Date updated,
ApplicationUser updateAuthor,
String errorFieldPrefix) |
Modifier and Type | Method and Description |
---|---|
List<Worklog> |
DefaultWorklogService.getByIssueVisibleToUser(JiraServiceContext jiraServiceContext,
Issue issue) |
List<Worklog> |
WorklogService.getByIssueVisibleToUser(JiraServiceContext jiraServiceContext,
Issue issue)
Returns all child worklogs of a specified issue that the provided user has permission to see.
|
PagedList<Worklog> |
DefaultWorklogService.getByIssueVisibleToUser(JiraServiceContext jiraServiceContext,
Issue issue,
int pageSize) |
PagedList<Worklog> |
WorklogService.getByIssueVisibleToUser(JiraServiceContext jiraServiceContext,
Issue issue,
int pageSize)
Returns a PagedList over all all child worklogs of a specified issue that the provided user has permission to see.
|
ServiceOutcome<Set<Worklog>> |
DefaultWorklogService.getWorklogsForIds(JiraServiceContext jiraServiceContext,
Set<Long> idsOfWorklogs) |
ServiceOutcome<Set<Worklog>> |
WorklogService.getWorklogsForIds(JiraServiceContext jiraServiceContext,
Set<Long> idsOfWorklogs)
Returns a set of worklogs for provided ids.
|
WorklogChangedSincePage<Worklog> |
DefaultWorklogService.getWorklogsUpdatedSince(ApplicationUser user,
Long sinceInMilliseconds) |
WorklogChangedSincePage<Worklog> |
WorklogService.getWorklogsUpdatedSince(ApplicationUser user,
Long sinceInMilliseconds)
Returns a list of worklogs visible by the calling user, which were modified since time provided in .
|
Modifier and Type | Method and Description |
---|---|
static WorklogResult |
WorklogResultFactory.create(Worklog worklog) |
static WorklogResult |
WorklogResultFactory.create(Worklog worklog,
boolean isEditableCheckRequired) |
static WorklogAdjustmentAmountResult |
WorklogResultFactory.createAdjustmentAmount(Worklog worklog,
Long adjustmentAmount)
Used for creating
WorklogResult objects that also capture a adjustmentAmount to be set. |
static WorklogAdjustmentAmountResult |
WorklogResultFactory.createAdjustmentAmount(Worklog worklog,
Long adjustmentAmount,
boolean isEditableCheckRequired)
Used for creating
WorklogResult objects that also capture a adjustmentAmount to be set. |
static WorklogNewEstimateResult |
WorklogResultFactory.createNewEstimate(Worklog worklog,
Long newEstimate)
Used for creating
WorklogResult objects that also capture a newEstimate to be set. |
static WorklogNewEstimateResult |
WorklogResultFactory.createNewEstimate(Worklog worklog,
Long newEstimate,
boolean isEditableCheckRequired)
Used for creating
WorklogResult objects that also capture a newEstimate to be set. |
protected boolean |
DefaultWorklogService.hasDeleteOwnPermission(ApplicationUser user,
Worklog worklog) |
protected boolean |
DefaultWorklogService.hasEditOwnPermission(ApplicationUser user,
Worklog worklog) |
boolean |
DefaultWorklogService.hasPermissionToDelete(JiraServiceContext jiraServiceContext,
Worklog worklog) |
boolean |
WorklogService.hasPermissionToDelete(JiraServiceContext jiraServiceContext,
Worklog worklog)
Determine whether the current user has the permission to delete the supplied
worklog, timetracking is enabled in JIRA and that the associated issue is in an editable workflow state.
|
boolean |
DefaultWorklogService.hasPermissionToUpdate(JiraServiceContext jiraServiceContext,
Worklog worklog) |
boolean |
WorklogService.hasPermissionToUpdate(JiraServiceContext jiraServiceContext,
Worklog worklog)
Determine whether the current user has the permission to update the supplied
worklog, timetracking is enabled in JIRA and that the associated issue is in an editable workflow state.
|
protected boolean |
DefaultWorklogService.isSameAuthor(ApplicationUser user,
Worklog worklog) |
Modifier and Type | Method and Description |
---|---|
Worklog |
WorklogEntityFactory.build(org.ofbiz.core.entity.GenericValue gv) |
Modifier and Type | Method and Description |
---|---|
Map<String,Object> |
WorklogEntityFactory.fieldMapFrom(Worklog worklog) |
Modifier and Type | Method and Description |
---|---|
Worklog |
IssueEvent.getWorklog() |
Modifier and Type | Method and Description |
---|---|
static void |
IssueEventDispatcher.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog)
Deprecated.
Since v5.0
|
void |
DefaultIssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog) |
void |
IssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
static void |
IssueEventDispatcher.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
boolean sendMail)
Deprecated.
Since v5.0
|
void |
DefaultIssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
boolean sendMail) |
void |
IssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
boolean sendMail)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
static void |
IssueEventDispatcher.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params)
Deprecated.
Since v5.0
|
void |
DefaultIssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params) |
void |
IssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
static void |
IssueEventDispatcher.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail)
Deprecated.
Since v5.0
|
void |
DefaultIssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail) |
void |
IssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
static void |
IssueEventDispatcher.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail,
boolean subtasksUpdated)
Deprecated.
Since v5.0
|
void |
DefaultIssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail,
boolean subtasksUpdated) |
void |
IssueEventManager.dispatchEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail,
boolean subtasksUpdated)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
void |
DefaultIssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog) |
void |
IssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
void |
DefaultIssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params) |
void |
IssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
void |
DefaultIssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail) |
void |
IssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
void |
DefaultIssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail,
boolean subtasksUpdated) |
void |
IssueEventManager.dispatchRedundantEvent(Long eventTypeId,
Issue issue,
ApplicationUser remoteUser,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changelog,
Map params,
boolean sendMail,
boolean subtasksUpdated)
Deprecated.
since v6.4.10, please use
IssueEventManager.dispatchEvent(IssueEventBundle) . |
void |
IssueEvent.setWorklog(Worklog worklog) |
Constructor and Description |
---|
IssueEvent(Issue issue,
ApplicationUser user,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changeGroup,
Map params,
Long eventTypeId)
Create a new IssueEvent with a given list of parameters.
|
IssueEvent(Issue issue,
ApplicationUser user,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changeGroup,
Map params,
Long eventTypeId,
boolean sendMail)
Create a new IssueEvent with a given list of parameters.
|
IssueEvent(Issue issue,
ApplicationUser user,
Comment comment,
Worklog worklog,
org.ofbiz.core.entity.GenericValue changeGroup,
Map params,
Long eventTypeId,
boolean sendMail,
boolean subtasksUpdated) |
Modifier and Type | Method and Description |
---|---|
Worklog |
WorklogEvent.getWorklog() |
Worklog |
AbstractWorklogEvent.getWorklog() |
Constructor and Description |
---|
AbstractWorklogEvent(Worklog worklog) |
WorklogCreatedEvent(Worklog worklog) |
WorklogDeletedEvent(Worklog worklog) |
WorklogUpdatedEvent(Worklog worklog) |
Modifier and Type | Method and Description |
---|---|
void |
ReplicatedIndexManager.reindexWorklogs(Collection<Worklog> worklogs) |
void |
NullReplicatedIndexManager.reindexWorklogs(Collection<Worklog> worklogs) |
void |
DefaultReplicatedIndexManager.reindexWorklogs(Collection<Worklog> worklogs)
Reindexes the set of provided worklogs in the replicated index.
|
Modifier and Type | Method and Description |
---|---|
WorklogJsonBean |
WorklogBeanFactory.createBean(Worklog worklog,
ApplicationUser loggedInUser)
Generate a bean suitable for serialisation by Jackson into JSON.
|
WorklogJsonBean |
DefaultWorklogBeanFactory.createBean(Worklog worklog,
ApplicationUser loggedInUser) |
Modifier and Type | Method and Description |
---|---|
Iterable<WorklogJsonBean> |
WorklogBeanFactory.createBeans(Iterable<Worklog> worklogs,
ApplicationUser loggedInUser)
Generate beans suitable for serialisation by Jackson into JSON.
|
Iterable<WorklogJsonBean> |
DefaultWorklogBeanFactory.createBeans(Iterable<Worklog> worklogs,
ApplicationUser loggedInUser) |
Modifier and Type | Method and Description |
---|---|
static WorklogJsonBean |
WorklogJsonBean.getRenderedWorklog(Worklog log,
JiraBaseUrls baseUrls,
String rendererType,
IssueRenderContext renderContext)
Deprecated.
|
static WorklogJsonBean |
WorklogJsonBean.getRenderedWorklog(Worklog log,
JiraBaseUrls baseUrls,
String rendererType,
IssueRenderContext renderContext,
ApplicationUser loggedInUser,
EmailFormatter emailFormatter) |
static WorklogJsonBean |
WorklogJsonBean.getWorklog(Worklog log,
JiraBaseUrls baseUrls,
UserManager userManager,
TimeTrackingConfiguration timeTrackingConfiguration)
Deprecated.
|
static WorklogJsonBean |
WorklogJsonBean.getWorklog(Worklog log,
JiraBaseUrls baseUrls,
UserManager userManager,
TimeTrackingConfiguration timeTrackingConfiguration,
ApplicationUser loggedInUser,
EmailFormatter emailFormatter)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static List<WorklogJsonBean> |
WorklogJsonBean.asBeans(List<Worklog> worklogs,
JiraBaseUrls uriInfo,
UserManager userManager,
TimeTrackingConfiguration timeTrackingConfiguration)
Deprecated.
|
static List<WorklogJsonBean> |
WorklogJsonBean.asBeans(List<Worklog> worklogs,
JiraBaseUrls uriInfo,
UserManager userManager,
TimeTrackingConfiguration timeTrackingConfiguration,
ApplicationUser loggedInUser,
EmailFormatter emailFormatter)
Deprecated.
|
static List<WorklogJsonBean> |
WorklogJsonBean.asRenderedBeans(List<Worklog> worklogs,
JiraBaseUrls uriInfo,
String rendererType,
IssueRenderContext renderContext)
Deprecated.
|
static List<WorklogJsonBean> |
WorklogJsonBean.asRenderedBeans(List<Worklog> worklogs,
JiraBaseUrls uriInfo,
String rendererType,
IssueRenderContext renderContext,
ApplicationUser loggedInUser,
EmailFormatter emailFormatter) |
Modifier and Type | Method and Description |
---|---|
List<Worklog> |
DefaultWorklogRetriever.apply(Issue issue) |
Modifier and Type | Method and Description |
---|---|
com.atlassian.fugue.Option<org.apache.lucene.document.Document> |
DefaultWorklogDocumentFactory.apply(Worklog worklog) |
org.apache.lucene.index.Term |
DefaultWorklogDocumentFactory.getIdentifyingTerm(Worklog worklog) |
Modifier and Type | Method and Description |
---|---|
long |
DefaultIndexManager.reIndexWorklogs(Collection<Worklog> worklogs) |
long |
IssueIndexManager.reIndexWorklogs(Collection<Worklog> worklogs)
Deprecated.
Call this as
IssueIndexingService.reIndexWorklogs(Collection) instead. Since v7.0. |
long |
IssueIndexingService.reIndexWorklogs(Collection<Worklog> worklogs)
Reindexes a collection of worklogs.
|
Index.Result |
IssueIndexer.reindexWorklogs(Collection<Worklog> worklogs,
Context context) |
Index.Result |
DefaultIssueIndexer.reindexWorklogs(Collection<Worklog> worklogs,
Context context) |
long |
DefaultIndexManager.reIndexWorklogs(Collection<Worklog> worklogs,
Context context) |
long |
IssueIndexManager.reIndexWorklogs(Collection<Worklog> worklogs,
Context context)
Deprecated.
Call this as
IssueIndexingService.reIndexWorklogs(Collection, Context) instead. Since v7.0. |
long |
IssueIndexingService.reIndexWorklogs(Collection<Worklog> worklogs,
Context context)
Reindexes a collection of worklogs.
|
long |
DefaultIndexManager.reIndexWorklogs(Collection<Worklog> worklogs,
Context context,
boolean updateReplicatedIndexStore) |
long |
IssueIndexManager.reIndexWorklogs(Collection<Worklog> worklogs,
Context context,
boolean updateReplicatedIndexStore)
Deprecated.
Call this as
IssueIndexingService.reIndexWorklogs(Collection, Context, boolean)
instead. Since v7.0. |
long |
IssueIndexingService.reIndexWorklogs(Collection<Worklog> worklogs,
Context context,
boolean updateReplicatedIndexStore)
Reindexes a collection of worklogs.
|
Modifier and Type | Method and Description |
---|---|
Worklog |
WorklogAction.getWorklog() |
Constructor and Description |
---|
WorklogAction(IssueTabPanelModuleDescriptor descriptor,
Worklog worklog,
JiraDurationUtils jiraDurationUtils,
boolean canEditWorklog,
boolean canDeleteWorklog,
FieldLayoutManager fieldLayoutManager,
RendererManager rendererManager,
Locale locale,
UserFormats userFormats) |
Modifier and Type | Method and Description |
---|---|
Worklog |
IssueUpdateBean.getWorklog() |
Modifier and Type | Method and Description |
---|---|
void |
IssueUpdateBean.setWorklog(Worklog worklog) |
Modifier and Type | Class and Description |
---|---|
class |
WorklogImpl
Represents an issue worklog.
|
class |
WorklogImpl2
Represents an issue worklog.
|
Modifier and Type | Method and Description |
---|---|
Worklog |
DefaultWorklogManager.create(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent) |
Worklog |
WorklogManager.create(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Creates a worklog based on the passed in
Worklog object and associates
it with the given issue. |
Worklog |
DatabaseWorklogStore.create(Worklog worklog) |
Worklog |
WorklogStore.create(Worklog worklog)
Creates a new worklog in the data store based on the values in the passed in Worklog object.
|
Worklog |
QueryDSLWorklogFactory.createWorklog(Issue issue,
com.querydsl.core.Tuple tuple) |
Worklog |
QueryDSLWorklogFactory.createWorklog(com.querydsl.core.Tuple tuple) |
Worklog |
QueryDSLWorklogFactory.createWorklogWithAliasedIdColumn(com.querydsl.core.Tuple tuple) |
Worklog |
DatabaseWorklogStore.getById(Long id) |
Worklog |
WorklogStore.getById(Long id)
Returns a worklog specified by it's id
|
Worklog |
DefaultWorklogManager.getById(Long id) |
Worklog |
WorklogManager.getById(Long id)
Used to get a worklog by its id.
|
Worklog |
DefaultWorklogManager.update(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent) |
Worklog |
WorklogManager.update(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Updates the provided
Worklog . |
Worklog |
DatabaseWorklogStore.update(Worklog worklog) |
Worklog |
WorklogStore.update(Worklog worklog)
Updates fields of an existing worklog in the datastore (identified by its id) with the supplied worklog.
|
Modifier and Type | Method and Description |
---|---|
List<Worklog> |
DatabaseWorklogStore.getByIssue(Issue issue) |
List<Worklog> |
WorklogStore.getByIssue(Issue issue)
Returns all child worklogs of a specified issue
|
List<Worklog> |
DefaultWorklogManager.getByIssue(Issue issue) |
List<Worklog> |
WorklogManager.getByIssue(Issue issue)
Returns all child worklogs of a specified issue
|
PagedList<Worklog> |
DefaultWorklogManager.getByIssue(Issue issue,
int pageSize) |
PagedList<Worklog> |
WorklogManager.getByIssue(Issue issue,
int pageSize)
Returns all child worklogs of a specified issue, in a PagedList
|
Set<Worklog> |
DefaultWorklogManager.getWorklogsForIds(Set<Long> idsOfWorklogs) |
Set<Worklog> |
WorklogManager.getWorklogsForIds(Set<Long> idsOfWorklogs)
Returns a set of worklogs for provided ids.
|
Set<Worklog> |
DatabaseWorklogStore.getWorklogsForIds(Set<Long> worklogIds,
int maxResults) |
Set<Worklog> |
WorklogStore.getWorklogsForIds(Set<Long> worklogIds,
int maxResults)
Returns a set of worklogs for provided ids.
|
List<Worklog> |
DefaultWorklogManager.getWorklogsUpdatedSince(Long sinceInMilliseconds) |
List<Worklog> |
WorklogManager.getWorklogsUpdatedSince(Long sinceInMilliseconds)
Returns
WorklogManager.WORKLOG_UPDATE_DATA_PAGE_SIZE of worklogs,
which were updated or created after (inclusive) provided time in milliseconds. |
List<Worklog> |
DatabaseWorklogStore.getWorklogsUpdateSince(Long sinceInMiliseconds,
int maxResults) |
List<Worklog> |
WorklogStore.getWorklogsUpdateSince(Long sinceInMilliseconds,
int maxResults)
Returns of worklogs, which were updated or created after (inclusive) provided time in milliseconds.
|
Modifier and Type | Method and Description |
---|---|
Worklog |
DefaultWorklogManager.create(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent) |
Worklog |
WorklogManager.create(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Creates a worklog based on the passed in
Worklog object and associates
it with the given issue. |
Worklog |
DatabaseWorklogStore.create(Worklog worklog) |
Worklog |
WorklogStore.create(Worklog worklog)
Creates a new worklog in the data store based on the values in the passed in Worklog object.
|
boolean |
DefaultWorklogManager.delete(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent) |
boolean |
WorklogManager.delete(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Deletes the specified worklog and updates the issue's remaining estimate and time spent fields.
|
Worklog |
DefaultWorklogManager.update(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent) |
Worklog |
WorklogManager.update(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Updates the provided
Worklog . |
Worklog |
DatabaseWorklogStore.update(Worklog worklog) |
Worklog |
WorklogStore.update(Worklog worklog)
Updates fields of an existing worklog in the datastore (identified by its id) with the supplied worklog.
|
void |
DefaultTimeTrackingIssueUpdater.updateIssueOnWorklogCreate(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent) |
void |
TimeTrackingIssueUpdater.updateIssueOnWorklogCreate(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Will set the
getIssue() 's remaining estimate to the newEstimate
and will increment the issues time spent by the getTimeSpent() . |
void |
DefaultTimeTrackingIssueUpdater.updateIssueOnWorklogDelete(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent) |
void |
TimeTrackingIssueUpdater.updateIssueOnWorklogDelete(ApplicationUser user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Will set the
getIssue() 's remaining estimate to the newEstimate
and will decrement the issues time spent by the getTimeSpent() . |
void |
DefaultTimeTrackingIssueUpdater.updateIssueOnWorklogUpdate(ApplicationUser user,
Worklog originalWorklog,
Worklog newWorklog,
Long originalTimeSpent,
Long newEstimate,
boolean dispatchEvent) |
void |
TimeTrackingIssueUpdater.updateIssueOnWorklogUpdate(ApplicationUser user,
Worklog originalWorklog,
Worklog newWorklog,
Long originalTimeSpent,
Long newEstimate,
boolean dispatchEvent)
Will set the
getIssue() 's remaining estimate to the newEstimate
and will decrement the issues time spent by the originalTimeSpent and then increment it by the
getTimeSpent() . |
Modifier and Type | Method and Description |
---|---|
String |
IssueTemplateContext.getTimeLogged(Worklog worklog,
I18nHelper i18n)
This is retrieved when the template is being generated so as it is properly formatted for the recipient.
|
Modifier and Type | Method and Description |
---|---|
Index.Result |
MockIssueIndexer.reindexWorklogs(Collection<Worklog> worklogs,
Context context) |
Modifier and Type | Method and Description |
---|---|
WorklogJsonBean |
WorklogBeanFactory.createBean(Worklog worklog) |
Modifier and Type | Method and Description |
---|---|
abstract Worklog |
WorklogOperation.validateAndPerformAndAutoAdjustEstimate(JiraServiceContext serviceContext,
Issue issue,
WorklogInputParameters worklogInputParameters) |
abstract Worklog |
WorklogOperation.validateAndPerformAndLeaveEstimate(JiraServiceContext serviceContext,
Issue issue,
WorklogInputParameters worklogInputParameters) |
abstract Worklog |
WorklogOperation.validateAndPerformAndManualAdjustEstimate(JiraServiceContext serviceContext,
Issue issue,
WorklogInputParameters worklogInputParameters) |
abstract Worklog |
WorklogOperation.validateAndPerformAndSetNewEstimate(JiraServiceContext serviceContext,
Issue issue,
WorklogInputParameters worklogInputParameters) |
Modifier and Type | Method and Description |
---|---|
List<Worklog> |
IssueWorklogResource.getIssueWorklogsObjects(Issue issue) |
Modifier and Type | Method and Description |
---|---|
Worklog |
DeleteWorklog.getWorklog()
Returns the worklog being deleted
|
Worklog |
UpdateWorklog.getWorklog()
Returns the worklog updated
|
Worklog |
CreateWorklog.getWorklog()
Returns the worklog created
|
Copyright © 2002-2017 Atlassian. All Rights Reserved.