Uses of Interface
com.atlassian.jira.bc.issue.worklog.WorklogResult

Packages that use WorklogResult
com.atlassian.jira.bc.issue.worklog   
 

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

Subinterfaces of WorklogResult in com.atlassian.jira.bc.issue.worklog
 interface WorklogAdjustmentAmountResult
          A more-specific WorklogResult which additionally defines an "adjustment amount" value.
 interface WorklogNewEstimateResult
          A more-specific WorklogResult which additionally defines a "new estimate" value.
 

Methods in com.atlassian.jira.bc.issue.worklog that return WorklogResult
static WorklogResult WorklogResultFactory.create(Worklog worklog)
           
static WorklogResult WorklogResultFactory.create(Worklog worklog, boolean isEditableCheckRequired)
           
 WorklogResult WorklogService.validateCreate(JiraServiceContext jiraServiceContext, WorklogInputParameters params)
          Determines whether worklogs are enabled in JIRA and if the user has the required permissions as determined by calling WorklogService.hasPermissionToCreate(com.atlassian.jira.bc.JiraServiceContext,com.atlassian.jira.issue.Issue,boolean) to create a worklog for this issue.
 WorklogResult WorklogService.validateDelete(JiraServiceContext jiraServiceContext, Long worklogId)
          Determines whether worklogs are enabled in JIRA and if the user has the required permissions as determined by calling WorklogService.hasPermissionToDelete(com.atlassian.jira.bc.JiraServiceContext,com.atlassian.jira.issue.worklog.Worklog) to delete a worklog for this issue.
 WorklogResult WorklogService.validateUpdate(JiraServiceContext jiraServiceContext, WorklogInputParameters params)
          Determines whether worklogs are enabled in JIRA and if the user has the required permissions as determined by calling WorklogService.hasPermissionToUpdate(com.atlassian.jira.bc.JiraServiceContext,com.atlassian.jira.issue.worklog.Worklog) to update a worklog for this issue.
 

Methods in com.atlassian.jira.bc.issue.worklog with parameters of type WorklogResult
static WorklogAdjustmentAmountResult WorklogResultFactory.createAdjustmentAmount(WorklogResult worklogResult, Long adjustmentAmount)
          Used for copying the WorklogResult received from the base validate method and adding on the adjustmentAmount.
 Worklog WorklogService.createAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
 Worklog WorklogService.createAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Persists a new Worklog on the given Issue.
static WorklogNewEstimateResult WorklogResultFactory.createNewEstimate(WorklogResult worklogResult, Long newEstimate)
          Used for copying the WorklogResult received from the base validate method and adding on the newEstimate.
 boolean WorklogService.deleteAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Deletes the specified Worklog.
 boolean WorklogService.deleteAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Deletes the specified Worklog.
 Worklog WorklogService.updateAndAutoAdjustRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Updates the provided Worklog.
 Worklog WorklogService.updateAndRetainRemainingEstimate(JiraServiceContext jiraServiceContext, WorklogResult worklogResult, boolean dispatchEvent)
          Updates the provided Worklog.
 



Copyright © 2002-2011 Atlassian. All Rights Reserved.