Uses of Interface
com.atlassian.jira.issue.IssueInputParameters

Packages that use IssueInputParameters
com.atlassian.jira.bc.issue   
com.atlassian.jira.issue   
 

Uses of IssueInputParameters in com.atlassian.jira.bc.issue
 

Methods in com.atlassian.jira.bc.issue with parameters of type IssueInputParameters
 IssueService.CreateValidationResult IssueService.validateCreate(com.atlassian.crowd.embedded.api.User user, IssueInputParameters issueInputParameters)
          This method will validate parameters and check permissions and if all checks pass it will create an Issue that can be passed to the IssueService.create(User, CreateValidationResult) method.
 IssueService.CreateValidationResult IssueService.validateCreate(User user, IssueInputParameters issueInputParameters)
          This method will validate parameters and check permissions and if all checks pass it will create an Issue that can be passed to the IssueService.create(User, CreateValidationResult) method.
 IssueService.CreateValidationResult DefaultIssueService.validateCreate(com.atlassian.crowd.embedded.api.User user, IssueInputParameters issueInputParameters)
           
 IssueService.CreateValidationResult DefaultIssueService.validateCreate(User user, IssueInputParameters issueInputParameters)
           
 IssueService.CreateValidationResult IssueService.validateSubTaskCreate(com.atlassian.crowd.embedded.api.User user, Long parentId, IssueInputParameters issueInputParameters)
          This method does the same as IssueService.validateCreate(User, IssueInputParameters) and it allows you to specify a parentId such that the created issue will be a subtask of the provided parent id.
 IssueService.CreateValidationResult IssueService.validateSubTaskCreate(User user, Long parentId, IssueInputParameters issueInputParameters)
          This method does the same as IssueService.validateCreate(User, IssueInputParameters) and it allows you to specify a parentId such that the created issue will be a subtask of the provided parent id.
 IssueService.CreateValidationResult DefaultIssueService.validateSubTaskCreate(com.atlassian.crowd.embedded.api.User user, Long parentId, IssueInputParameters issueInputParameters)
           
 IssueService.CreateValidationResult DefaultIssueService.validateSubTaskCreate(User user, Long parentId, IssueInputParameters issueInputParameters)
           
 IssueService.TransitionValidationResult IssueService.validateTransition(com.atlassian.crowd.embedded.api.User user, Long issueId, int actionId, IssueInputParameters issueInputParameters)
          This method will validate parameters and check the transition conditions and if all checks pass it will construct a new instance of the Issue and will update it with the new parameters.
 IssueService.TransitionValidationResult IssueService.validateTransition(User user, Long issueId, int actionId, IssueInputParameters issueInputParameters)
          This method will validate parameters and check the transition conditions and if all checks pass it will construct a new instance of the Issue and will update it with the new parameters.
 IssueService.TransitionValidationResult DefaultIssueService.validateTransition(com.atlassian.crowd.embedded.api.User user, Long issueId, int actionId, IssueInputParameters issueInputParameters)
           
 IssueService.TransitionValidationResult DefaultIssueService.validateTransition(User user, Long issueId, int actionId, IssueInputParameters issueInputParameters)
           
 IssueService.UpdateValidationResult IssueService.validateUpdate(com.atlassian.crowd.embedded.api.User user, Long issueId, IssueInputParameters issueInputParameters)
          This method will validate parameters and check permissions and if all checks pass it will construct a new instance of the Issue and will update it with the new parameters.
 IssueService.UpdateValidationResult IssueService.validateUpdate(User user, Long issueId, IssueInputParameters issueInputParameters)
          This method will validate parameters and check permissions and if all checks pass it will construct a new instance of the Issue and will update it with the new parameters.
 IssueService.UpdateValidationResult DefaultIssueService.validateUpdate(com.atlassian.crowd.embedded.api.User user, Long issueId, IssueInputParameters issueInputParameters)
           
 IssueService.UpdateValidationResult DefaultIssueService.validateUpdate(User user, Long issueId, IssueInputParameters issueInputParameters)
           
 

Uses of IssueInputParameters in com.atlassian.jira.issue
 

Classes in com.atlassian.jira.issue that implement IssueInputParameters
 class IssueInputParametersImpl
           
 

Methods in com.atlassian.jira.issue that return IssueInputParameters
 IssueInputParameters IssueInputParametersImpl.addCustomFieldValue(Long customFieldId, String... values)
           
 IssueInputParameters IssueInputParameters.addCustomFieldValue(Long customFieldId, String... values)
          Adds a value for a custom field with the specified id.
 IssueInputParameters IssueInputParametersImpl.addCustomFieldValue(String fullCustomFieldKey, String... values)
           
 IssueInputParameters IssueInputParameters.addCustomFieldValue(String fullCustomFieldKey, String... values)
          Adds a value for a custom field with the specified full key.
 IssueInputParameters IssueInputParametersImpl.setAffectedVersionIds(Long... affectedVersionIds)
           
 IssueInputParameters IssueInputParameters.setAffectedVersionIds(Long... affectedVersionIds)
           
 IssueInputParameters IssueInputParametersImpl.setAssigneeId(String assigneeId)
           
 IssueInputParameters IssueInputParameters.setAssigneeId(String assigneeId)
           
 IssueInputParameters IssueInputParametersImpl.setComment(String comment)
           
 IssueInputParameters IssueInputParameters.setComment(String comment)
          Set a comment value with no visibility restrictions.
 IssueInputParameters IssueInputParametersImpl.setComment(String comment, Long projectRoleId)
           
 IssueInputParameters IssueInputParameters.setComment(String comment, Long projectRoleId)
          Set a comment value with a project role restriction.
 IssueInputParameters IssueInputParametersImpl.setComment(String comment, String groupId)
           
 IssueInputParameters IssueInputParameters.setComment(String comment, String groupId)
          Set a comment value with a group restriction.
 IssueInputParameters IssueInputParametersImpl.setComponentIds(Long... componentIds)
           
 IssueInputParameters IssueInputParameters.setComponentIds(Long... componentIds)
           
 IssueInputParameters IssueInputParametersImpl.setDescription(String description)
           
 IssueInputParameters IssueInputParameters.setDescription(String description)
           
 IssueInputParameters IssueInputParametersImpl.setDueDate(String dueDate)
           
 IssueInputParameters IssueInputParameters.setDueDate(String dueDate)
           
 IssueInputParameters IssueInputParametersImpl.setEnvironment(String environment)
           
 IssueInputParameters IssueInputParameters.setEnvironment(String environment)
           
 IssueInputParameters IssueInputParametersImpl.setFixVersionIds(Long... fixVersionIds)
           
 IssueInputParameters IssueInputParameters.setFixVersionIds(Long... fixVersionIds)
           
 IssueInputParameters IssueInputParametersImpl.setIssueTypeId(String issueTypeId)
           
 IssueInputParameters IssueInputParameters.setIssueTypeId(String issueTypeId)
           
 IssueInputParameters IssueInputParametersImpl.setOriginalEstimate(Long originalEstimate)
           
 IssueInputParameters IssueInputParameters.setOriginalEstimate(Long originalEstimate)
           
 IssueInputParameters IssueInputParametersImpl.setPriorityId(String priorityId)
           
 IssueInputParameters IssueInputParameters.setPriorityId(String priorityId)
           
 IssueInputParameters IssueInputParametersImpl.setProjectId(Long projectId)
           
 IssueInputParameters IssueInputParameters.setProjectId(Long projectId)
           
 IssueInputParameters IssueInputParametersImpl.setReporterId(String reporterId)
           
 IssueInputParameters IssueInputParameters.setReporterId(String reporterId)
           
 IssueInputParameters IssueInputParametersImpl.setResolutionDate(String resolutionDate)
           
 IssueInputParameters IssueInputParameters.setResolutionDate(String resolutionDate)
           
 IssueInputParameters IssueInputParametersImpl.setResolutionId(String resolutionId)
           
 IssueInputParameters IssueInputParameters.setResolutionId(String resolutionId)
           
 IssueInputParameters IssueInputParametersImpl.setSecurityLevelId(Long securityLevelId)
           
 IssueInputParameters IssueInputParameters.setSecurityLevelId(Long securityLevelId)
           
 IssueInputParameters IssueInputParametersImpl.setStatusId(String statusId)
           
 IssueInputParameters IssueInputParameters.setStatusId(String statusId)
           
 IssueInputParameters IssueInputParametersImpl.setSummary(String summary)
           
 IssueInputParameters IssueInputParameters.setSummary(String summary)
           
 IssueInputParameters IssueInputParametersImpl.setTimeSpent(Long timeSpent)
           
 IssueInputParameters IssueInputParameters.setTimeSpent(Long timeSpent)
           
 



Copyright © 2002-2011 Atlassian. All Rights Reserved.