Tabnine Logo
IssueInputParameters.setSummary
Code IndexAdd Tabnine to your IDE (free)

How to use
setSummary
method
in
com.atlassian.jira.issue.IssueInputParameters

Best Java code snippets using com.atlassian.jira.issue.IssueInputParameters.setSummary (Showing top 4 results out of 315)

origin: com.atlassian.jira/jira-core

@Override
protected void finaliseOperation(String finalValue, IssueInputParameters parameters, ErrorCollection errors)
{
  parameters.setSummary(finalValue);
}
origin: com.atlassian.jira/jira-gadgets-plugin

private IssueInputParameters getIssueInputParameters(String projectId, String issueTypeId, String summary, ApplicationUser reporter)
{
  final IssueInputParameters issueInputParameters = new IssueInputParametersImpl();
  issueInputParameters.setProjectId(new Long(projectId));
  issueInputParameters.setIssueTypeId(issueTypeId);
  issueInputParameters.setSummary(summary);
  issueInputParameters.setReporterId(reporter.getName());
  issueInputParameters.setAssigneeId("-1");
  issueInputParameters.setPriorityId(constantsManager.getDefaultPriorityObject().getId());
  return issueInputParameters;
}
origin: com.atlassian.cpji/cpji-jira-plugin

@Override
public void populateInputParams(CachingUserMapper userMapper, IssueInputParameters inputParameters, CopyIssueBean copyIssueBean,
    FieldLayoutItem fieldLayoutItem, Project project, IssueType issueType) {
  MappingResult mappingResult = getMappingResult(userMapper, copyIssueBean, project);
  if (!mappingResult.hasOneValidValue() && fieldLayoutItem.isRequired()) {
    String[] defaultFieldValue = defaultFieldValuesManager.getDefaultFieldValue(project.getKey(), getFieldId(), issueType.getName());
    if (defaultFieldValue != null) {
      inputParameters.getActionParameters().put(getFieldId(), defaultFieldValue);
    }
  } else {
    inputParameters.setSummary(copyIssueBean.getSummary());
  }
}
origin: com.atlassian.jira.plugins/atlassian-jira-rpc-plugin

issueInputParameters.setProjectId(projectId);
issueInputParameters.setIssueTypeId(rIssue.getType());
issueInputParameters.setSummary(rIssue.getSummary());
if (StringUtils.isNotEmpty(rIssue.getReporter()))
com.atlassian.jira.issueIssueInputParameterssetSummary

Popular methods of IssueInputParameters

  • addCustomFieldValue
    Adds a value for a custom field with the specified full key. This will put a value in the web-style
  • setAssigneeId
  • setIssueTypeId
  • setPriorityId
  • setProjectId
  • setReporterId
  • getActionParameters
    This provides the "web-style" parameters that JIRA fields expect to perform their functions.
  • getIssueTypeId
  • setAffectedVersionIds
  • setComponentIds
  • setDescription
  • setDueDate
  • setDescription,
  • setDueDate,
  • setEnvironment,
  • setFixVersionIds,
  • setSecurityLevelId,
  • getProjectId,
  • isFieldPresent,
  • setResolutionId,
  • setRetainExistingValuesWhenParameterNotProvided

Popular in Java

  • Reading from database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • getApplicationContext (Context)
  • startActivity (Activity)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • ImageIO (javax.imageio)
  • JOptionPane (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now