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

Packages that use Worklog
com.atlassian.jira.bc.issue.worklog   
com.atlassian.jira.entity   
com.atlassian.jira.event.issue   
com.atlassian.jira.issue.fields.rest.json.beans   
com.atlassian.jira.issue.tabpanels   
com.atlassian.jira.issue.util   
com.atlassian.jira.issue.worklog   
com.atlassian.jira.mail   
com.atlassian.jira.rest.v2.issue.worklog   
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, Long newEstimate, boolean dispatchEvent)
           
 Worklog DefaultWorklogService.createAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.createAndAutoAdjustRemainingEstimate(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.createAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 Worklog DefaultWorklogService.createWithManuallyAdjustedEstimate(JiraServiceContext jiraServiceContext, WorklogAdjustmentAmountResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.createWithManuallyAdjustedEstimate(JiraServiceContext jiraServiceContext, WorklogAdjustmentAmountResult worklogAdjustmentAmount, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 Worklog DefaultWorklogService.createWithNewRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogNewEstimateResult worklogResult, boolean dispatchEvent)
           
 Worklog WorklogService.createWithNewRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogNewEstimateResult worklogNewEstimate, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 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, String groupLevel, String roleLevelId, String timeSpent, Date startDate, Long worklogId, String comment, Date created, Date updated, ApplicationUser updateAuthor, String errorFieldPrefix)
           
 

Methods in com.atlassian.jira.bc.issue.worklog that return types with arguments of type Worklog
 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.
 

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, 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)
           
 

Uses of Worklog in com.atlassian.jira.entity
 

Methods in com.atlassian.jira.entity that return Worklog
 Worklog WorklogEntityFactory.build(org.ofbiz.core.entity.GenericValue gv)
           
 

Methods in com.atlassian.jira.entity with parameters of type Worklog
 Map<String,Object> WorklogEntityFactory.fieldMapFrom(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
 void DefaultIssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog)
           
static void IssueEventDispatcher.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog)
          Deprecated. Since v5.0
 void IssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog)
          Dispatch event of given type.
 void DefaultIssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, boolean sendMail)
           
static void IssueEventDispatcher.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, boolean sendMail)
          Deprecated. Since v5.0
 void IssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, boolean sendMail)
          Dispatch event of given type.
 void DefaultIssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params)
           
static void IssueEventDispatcher.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params)
          Deprecated. Since v5.0
 void IssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params)
          Dispatch event of given type with custom parameters.
 void DefaultIssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params, boolean sendMail)
           
static void IssueEventDispatcher.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params, boolean sendMail)
          Deprecated. Since v5.0
 void IssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params, boolean sendMail)
          Dispatch event of given type with custom parameters.
 void DefaultIssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params, boolean sendMail, boolean subtasksUpdated)
           
static void IssueEventDispatcher.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params, boolean sendMail, boolean subtasksUpdated)
          Deprecated. Since v5.0
 void IssueEventManager.dispatchEvent(Long eventTypeId, Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changelog, Map params, boolean sendMail, boolean subtasksUpdated)
          Dispatch event of given type with custom parameters.
 void IssueEvent.setWorklog(Worklog worklog)
           
 

Constructors in com.atlassian.jira.event.issue with parameters of type Worklog
IssueEvent(Issue issue, com.atlassian.crowd.embedded.api.User 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, com.atlassian.crowd.embedded.api.User 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, com.atlassian.crowd.embedded.api.User user, Comment comment, Worklog worklog, org.ofbiz.core.entity.GenericValue changeGroup, Map params, Long eventTypeId, boolean sendMail, boolean subtasksUpdated)
           
 

Uses of Worklog in com.atlassian.jira.issue.fields.rest.json.beans
 

Methods in com.atlassian.jira.issue.fields.rest.json.beans with parameters of type Worklog
static WorklogJsonBean WorklogJsonBean.getRenderedWorklog(Worklog log, JiraBaseUrls baseUrls, String rendererType, IssueRenderContext renderContext)
           
static WorklogJsonBean WorklogJsonBean.getWorklog(Worklog log, JiraBaseUrls baseUrls, UserManager userManager, TimeTrackingConfiguration timeTrackingConfiguration)
           
 

Method parameters in com.atlassian.jira.issue.fields.rest.json.beans with type arguments of type Worklog
static List<WorklogJsonBean> WorklogJsonBean.asBeans(List<Worklog> worklogs, JiraBaseUrls uriInfo, UserManager userManager, TimeTrackingConfiguration timeTrackingConfiguration)
           
static List<WorklogJsonBean> WorklogJsonBean.asRenderedBeans(List<Worklog> worklogs, JiraBaseUrls uriInfo, String rendererType, IssueRenderContext renderContext)
           
 

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, Locale locale)
           
 

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 DefaultWorklogManager.create(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogManager.create(com.atlassian.crowd.embedded.api.User 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 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 WorklogStore.getById(Long id)
          Returns a worklog specified by it's id
 Worklog OfBizWorklogStore.getById(Long id)
           
 Worklog DefaultWorklogManager.getById(Long id)
           
 Worklog WorklogManager.getById(Long id)
          Used to get a worklog by its id.
 Worklog DefaultWorklogManager.update(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogManager.update(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
          Updates the provided Worklog.
 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
 List<Worklog> WorklogStore.getByIssue(Issue issue)
          Returns all child worklogs of a specified issue
 List<Worklog> OfBizWorklogStore.getByIssue(Issue 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
 

Methods in com.atlassian.jira.issue.worklog with parameters of type Worklog
 Worklog DefaultWorklogManager.create(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogManager.create(com.atlassian.crowd.embedded.api.User 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 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 DefaultWorklogManager.delete(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
           
 boolean WorklogManager.delete(com.atlassian.crowd.embedded.api.User 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(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
           
 Worklog WorklogManager.update(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
          Updates the provided Worklog.
 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.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
           
 void TimeTrackingIssueUpdater.updateIssueOnWorklogCreate(com.atlassian.crowd.embedded.api.User 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(com.atlassian.crowd.embedded.api.User user, Worklog worklog, Long newEstimate, boolean dispatchEvent)
           
 void TimeTrackingIssueUpdater.updateIssueOnWorklogDelete(com.atlassian.crowd.embedded.api.User 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(com.atlassian.crowd.embedded.api.User user, Worklog originalWorklog, Worklog newWorklog, Long originalTimeSpent, Long newEstimate, boolean dispatchEvent)
           
 void TimeTrackingIssueUpdater.updateIssueOnWorklogUpdate(com.atlassian.crowd.embedded.api.User 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().
 

Uses of Worklog in com.atlassian.jira.mail
 

Methods in com.atlassian.jira.mail with parameters of type Worklog
 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.
 

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

Methods in com.atlassian.jira.rest.v2.issue.worklog that return Worklog
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)
           
 

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

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



Copyright © 2002-2014 Atlassian. All Rights Reserved.