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

How to use
getName
method
in
com.atlassian.jira.rest.client.api.domain.Project

Best Java code snippets using com.atlassian.jira.rest.client.api.domain.Project.getName (Showing top 1 results out of 315)

origin: org.smartdeveloperhub.harvesters.it.backend/it-backend-core

/**
 * Method for building {@link Project} from Jira projects.
 * @param jiraProject for retrieve Project information.
 * @param topIssues of the project.
 * @param childIssues of the project.
 * @return {@link Project}
 */
public Project createProject(com.atlassian.jira.rest.client.api.domain.Project jiraProject,
                Set<Issue> topIssues, Set<Issue> childIssues) {
  Project project = new Project();
  project.setId(jiraProject.getKey());
  project.setName(jiraProject.getName());
  project.setVersions(getVersionsByIds(jiraProject));
  project.setComponents(getComponentsByIds(jiraProject));
  Set<String> topIds = getIssuesByIds(topIssues);
  Set<String> issuesIds = getIssuesByIds(childIssues);
  issuesIds.addAll(topIds);
  project.setTopIssues(topIds);
  project.setIssues(issuesIds);
  return project;
}
com.atlassian.jira.rest.client.api.domainProjectgetName

Popular methods of Project

  • getVersions
  • <init>
  • getComponents
  • getDescription
  • getKey

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (Timer)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Join (org.hibernate.mapping)
  • Top plugins for WebStorm
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