com.atlassian.jira.rest.client.domain
Class Project
java.lang.Object
com.atlassian.jira.rest.client.domain.BasicProject
com.atlassian.jira.rest.client.domain.Project
- All Implemented Interfaces:
- AddressableEntity, NamedEntity
public class Project
- extends BasicProject
Complete information about single JIRA project.
Many REST resources instead include just @{}BasicProject
- Since:
- v0.1
Project
public Project(URI self,
String key,
String name,
String description,
BasicUser lead,
URI uri,
Collection<Version> versions,
Collection<BasicComponent> components)
getDescription
@Nullable
public String getDescription()
- Returns:
- description provided for this project or null if there is no description specific for this project.
getLead
public BasicUser getLead()
- Returns:
- the person who leads this project
getUri
@Nullable
public URI getUri()
- Returns:
- user-defined URI to a web page for this project, or
null if not defined.
getVersions
public Iterable<Version> getVersions()
- Returns:
- versions defined for this project
getComponents
public Iterable<BasicComponent> getComponents()
- Returns:
- components defined for this project
Copyright © 2012 Atlassian Pty Ltd. All Rights Reserved.