Uses of Interface
com.atlassian.jira.issue.worklog.Worklog

Packages that use Worklog
com.atlassian.jira.bc.issue.worklog   
com.atlassian.jira.event.issue   
com.atlassian.jira.issue.tabpanels   
com.atlassian.jira.issue.util   
com.atlassian.jira.issue.worklog   
com.atlassian.jira.mail   
com.atlassian.jira.web.action.issue   
 

Uses of Worklog in com.atlassian.jira.bc.issue.worklog
 

Methods in com.atlassian.jira.bc.issue.worklog that return Worklog
protected  Worklog DefaultWorklogService.create(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, java.lang.Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogService.createAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 Worklog DefaultWorklogService.createAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.createAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 Worklog DefaultWorklogService.createAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.createWithManuallyAdjustedEstimate(JiraServiceContext jiraServiceContext, WorklogAdjustmentAmountResult worklogAdjustmentAmount, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 Worklog DefaultWorklogService.createWithManuallyAdjustedEstimate(JiraServiceContext jiraServiceContext, WorklogAdjustmentAmountResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.createWithNewRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogNewEstimateResult worklogNewEstimate, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 Worklog DefaultWorklogService.createWithNewRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogNewEstimateResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.getById(JiraServiceContext jiraServiceContext, java.lang.Long id)
          Used to get a worklog by its id.
 Worklog DefaultWorklogService.getById(JiraServiceContext jiraServiceContext, java.lang.Long id)
           
 Worklog WorklogResult.getWorklog()
           
protected  Worklog DefaultWorklogService.update(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, java.lang.Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogService.updateAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Updates the provided Worklog.
 Worklog DefaultWorklogService.updateAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.updateAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Updates the provided Worklog.
 Worklog DefaultWorklogService.updateAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.updateWithNewRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogNewEstimateResult worklogNewEstimate, boolean dispatchEvent)
          Updates the provided Worklog.
 Worklog DefaultWorklogService.updateWithNewRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogNewEstimateResult worklogResult, boolean dispatchEvent)
           
protected  Worklog DefaultWorklogService.validateParamsAndCreateWorklog(JiraServiceContext jiraServiceContext, Issue issue, java.lang.String author, java.lang.String groupLevel, java.lang.String roleLevelId, java.lang.String timeSpent, java.util.Date startDate, java.lang.Long worklogId, java.lang.String comment, java.util.Date created, java.util.Date updated, java.lang.String updateAuthor, java.lang.String errorFieldPrefix)
           
 

Methods in com.atlassian.jira.bc.issue.worklog that return types with arguments of type Worklog
 java.util.List<Worklog> WorklogService.getByIssueVisibleToUser(JiraServiceContext jiraServiceContext, Issue issue)
          Returns all child worklogs of a specified issue that the provided user has permission to see.
 java.util.List<Worklog> DefaultWorklogService.getByIssueVisibleToUser(JiraServiceContext jiraServiceContext, Issue issue)
           
 

Methods in com.atlassian.jira.bc.issue.worklog with parameters of type Worklog
static WorklogResult WorklogResultFactory.create(Worklog worklog)
           
static WorklogResult WorklogResultFactory.create(Worklog worklog, boolean isEditableCheckRequired)
           
static WorklogAdjustmentAmountResult WorklogResultFactory.createAdjustmentAmount(Worklog worklog, java.lang.Long adjustmentAmount)
          Used for creating WorklogResult objects that also capture a adjustmentAmount to be set.
static WorklogAdjustmentAmountResult WorklogResultFactory.createAdjustmentAmount(Worklog worklog, java.lang.Long adjustmentAmount, boolean isEditableCheckRequired)
          Used for creating WorklogResult objects that also capture a adjustmentAmount to be set.
static WorklogNewEstimateResult WorklogResultFactory.createNewEstimate(Worklog worklog, java.lang.Long newEstimate)
          Used for creating WorklogResult objects that also capture a newEstimate to be set.
static WorklogNewEstimateResult WorklogResultFactory.createNewEstimate(Worklog worklog, java.lang.Long newEstimate, boolean isEditableCheckRequired)
          Used for creating WorklogResult objects that also capture a newEstimate to be set.
protected  boolean DefaultWorklogService.hasDeleteOwnPermission(com.opensymphony.user.User user, Worklog worklog)
           
protected  boolean DefaultWorklogService.hasEditOwnPermission(com.opensymphony.user.User user, 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.hasPermissionToDelete(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.
 boolean DefaultWorklogService.hasPermissionToUpdate(JiraServiceContext jiraServiceContext, Worklog worklog)
           
protected  boolean DefaultWorklogService.isSameAuthor(com.opensymphony.user.User user, Worklog worklog)
           
 

Uses of Worklog in com.atlassian.jira.event.issue
 

Methods in com.atlassian.jira.event.issue that return Worklog
 Worklog IssueEvent.getWorklog()
           
 

Methods in com.atlassian.jira.event.issue with parameters of type Worklog
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, boolean sendMail)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, java.util.Map params)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, java.util.Map params, boolean sendMail)
           
static void IssueEventDispatcher.dispatchEvent(java.lang.Long eventTypeId, Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, java.util.Map params, boolean sendMail, boolean subtasksUpdated)
           
 void IssueEvent.setWorklog(Worklog worklog)
           
 

Constructors in com.atlassian.jira.event.issue with parameters of type Worklog
IssueEvent(Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changeGroup, java.util.Map params, java.lang.Long eventTypeId)
          Create a new IssueEvent with a given list of parameters.
IssueEvent(Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changeGroup, java.util.Map params, java.lang.Long eventTypeId, boolean sendMail)
          Create a new IssueEvent with a given list of parameters.
IssueEvent(Issue issue, com.opensymphony.user.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changeGroup, java.util.Map params, java.lang.Long eventTypeId, boolean sendMail, boolean subtasksUpdated)
           
 

Uses of Worklog in com.atlassian.jira.issue.tabpanels
 

Methods in com.atlassian.jira.issue.tabpanels that return Worklog
 Worklog WorklogAction.getWorklog()
           
 

Constructors in com.atlassian.jira.issue.tabpanels with parameters of type Worklog
WorklogAction(IssueTabPanelModuleDescriptor descriptor, Worklog worklog, JiraDurationUtils jiraDurationUtils, boolean canEditWorklog, boolean canDeleteWorklog, FieldLayoutManager fieldLayoutManager, RendererManager rendererManager)
           
 

Uses of Worklog in com.atlassian.jira.issue.util
 

Methods in com.atlassian.jira.issue.util that return Worklog
 Worklog IssueUpdateBean.getWorklog()
           
 

Methods in com.atlassian.jira.issue.util with parameters of type Worklog
 void IssueUpdateBean.setWorklog(Worklog worklog)
           
 

Uses of Worklog in com.atlassian.jira.issue.worklog
 

Classes in com.atlassian.jira.issue.worklog that implement Worklog
 class WorklogImpl
          Represents an issue worklog.
 

Methods in com.atlassian.jira.issue.worklog that return Worklog
 Worklog WorklogManager.create(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
          Creates a worklog based on the passed in Worklog object and associates it with the given issue.
 Worklog DefaultWorklogManager.create(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogStore.create(Worklog worklog)
          Creates a new worklog in the data store based on the values in the passed in Worklog object.
 Worklog OfBizWorklogStore.create(Worklog worklog)
           
 Worklog WorklogManager.getById(java.lang.Long id)
          Used to get a worklog by its id.
 Worklog WorklogStore.getById(java.lang.Long id)
          Returns a worklog specified by it's id
 Worklog OfBizWorklogStore.getById(java.lang.Long id)
           
 Worklog DefaultWorklogManager.getById(java.lang.Long id)
           
 Worklog WorklogManager.update(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
          Updates the provided Worklog.
 Worklog DefaultWorklogManager.update(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogStore.update(Worklog worklog)
          Updates fields of an existing worklog in the datastore (identified by its id) with the supplied worklog.
 Worklog OfBizWorklogStore.update(Worklog worklog)
           
 

Methods in com.atlassian.jira.issue.worklog that return types with arguments of type Worklog
 java.util.List<Worklog> WorklogManager.getByIssue(Issue issue)
          Returns all child worklogs of a specified issue
 java.util.List<Worklog> WorklogStore.getByIssue(Issue issue)
          Returns all child worklogs of a specified issue
 java.util.List<Worklog> OfBizWorklogStore.getByIssue(Issue issue)
           
 java.util.List<Worklog> DefaultWorklogManager.getByIssue(Issue issue)
           
 

Methods in com.atlassian.jira.issue.worklog with parameters of type Worklog
 Worklog WorklogManager.create(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
          Creates a worklog based on the passed in Worklog object and associates it with the given issue.
 Worklog DefaultWorklogManager.create(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogStore.create(Worklog worklog)
          Creates a new worklog in the data store based on the values in the passed in Worklog object.
 Worklog OfBizWorklogStore.create(Worklog worklog)
           
 boolean WorklogManager.delete(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
          Deletes the specified worklog and updates the issue's remaining estimate and time spent fields.
 boolean DefaultWorklogManager.delete(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogManager.update(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
          Updates the provided Worklog.
 Worklog DefaultWorklogManager.update(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogStore.update(Worklog worklog)
          Updates fields of an existing worklog in the datastore (identified by its id) with the supplied worklog.
 Worklog OfBizWorklogStore.update(Worklog worklog)
           
 void DefaultTimeTrackingIssueUpdater.updateIssueOnWorklogCreate(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
           
 void TimeTrackingIssueUpdater.updateIssueOnWorklogCreate(com.opensymphony.user.User user, Worklog worklog, java.lang.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(com.opensymphony.user.User user, Worklog worklog, java.lang.Long newEstimate, boolean dispatchEvent)
           
 void TimeTrackingIssueUpdater.updateIssueOnWorklogDelete(com.opensymphony.user.User user, Worklog worklog, java.lang.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(com.opensymphony.user.User user, Worklog originalWorklog, Worklog newWorklog, java.lang.Long originalTimeSpent, java.lang.Long newEstimate, boolean dispatchEvent)
           
 void TimeTrackingIssueUpdater.updateIssueOnWorklogUpdate(com.opensymphony.user.User user, Worklog originalWorklog, Worklog newWorklog, java.lang.Long originalTimeSpent, java.lang.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().
 

Uses of Worklog in com.atlassian.jira.mail
 

Methods in com.atlassian.jira.mail with parameters of type Worklog
 java.lang.String TemplateContext.getTimeLogged(Worklog worklog, I18nHelper i18n)
          This is retrieved when the template is being generated so as it is properly formatted for the recipient.
 

Uses of Worklog in com.atlassian.jira.web.action.issue
 

Methods in com.atlassian.jira.web.action.issue that return Worklog
 Worklog CreateWorklog.getWorklog()
          Returns the worklog created
 Worklog UpdateWorklog.getWorklog()
          Returns the worklog updated
 Worklog DeleteWorklog.getWorklog()
          Returns the worklog being deleted
 



Copyright © 2002-2010 Atlassian. All Rights Reserved.