congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
IssueInputParameters.setSecurityLevelId
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: com.atlassian.jira/jira-core

@Override
protected void finaliseOperation(String finalValue, IssueInputParameters parameters, ErrorCollection errors)
{
  Long value = finalValue != null ? Long.valueOf(finalValue) : null;
  parameters.setSecurityLevelId(value);
}
origin: com.atlassian.cpji/cpji-jira-plugin

public void populateCurrentValue(final IssueInputParameters inputParameters, final CopyIssueBean bean, final FieldLayoutItem fieldLayoutItem, final Project project)
{
  final String issueSecurityLevel = bean.getIssueSecurityLevel();
  if (StringUtils.isNotEmpty(issueSecurityLevel))
  {
    final Long issueSecurityLevelId = findIssueSecurityLevel(issueSecurityLevel, project);
    if (issueSecurityLevelId != null)
    {
      inputParameters.setSecurityLevelId(issueSecurityLevelId);
    }
  }
}
origin: com.atlassian.jira.plugins/atlassian-jira-rpc-plugin

issueInputParameters.setPriorityId(rIssue.getPriority());
issueInputParameters.setResolutionId(rIssue.getResolution());
issueInputParameters.setSecurityLevelId(securityLevelId);
issueInputParameters.setFixVersionIds(SoapUtils.getRemoteEntityIdsAsLong(rIssue.getFixVersions()));
issueInputParameters.setAffectedVersionIds(SoapUtils.getRemoteEntityIdsAsLong(rIssue.getAffectsVersions()));
com.atlassian.jira.issueIssueInputParameterssetSecurityLevelId

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
  • setSummary
  • getActionParameters
    This provides the "web-style" parameters that JIRA fields expect to perform their functions.
  • getIssueTypeId
  • setAffectedVersionIds
  • setComponentIds
  • setDescription
  • setComponentIds,
  • setDescription,
  • setDueDate,
  • setEnvironment,
  • setFixVersionIds,
  • getProjectId,
  • isFieldPresent,
  • setResolutionId,
  • setRetainExistingValuesWhenParameterNotProvided

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSystemService (Context)
  • findViewById (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • JTextField (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
  • Table (org.hibernate.mapping)
    A relational table
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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