com.atlassian.jira.project
Class ProjectImpl

java.lang.Object
  extended by com.atlassian.jira.project.ProjectImpl
All Implemented Interfaces:
Project

public class ProjectImpl
extends Object
implements Project

Represents an immutable Project domain object for JIRA.


Constructor Summary
ProjectImpl(org.ofbiz.core.entity.GenericValue projectGv)
           
 
Method Summary
 boolean equals(Object o)
           
 Long getAssigneeType()
          Returns the default assignee for issues that get created in this project.
 Avatar getAvatar()
          Gives the currently-configured Avatar for this project.
 Collection<org.ofbiz.core.entity.GenericValue> getComponents()
          Returns the components for this Project.
 Long getCounter()
           
 String getDescription()
           
 org.ofbiz.core.entity.GenericValue getGenericValue()
           
 Long getId()
           
 Collection<IssueType> getIssueTypes()
           
 String getKey()
           
 com.atlassian.crowd.embedded.api.User getLead()
           
 com.atlassian.crowd.embedded.api.User getLeadUser()
          Returns the Project Lead
 String getLeadUserName()
           
 String getName()
           
 org.ofbiz.core.entity.GenericValue getProjectCategory()
           
 Collection<ProjectComponent> getProjectComponents()
          Returns the components for this Project.
 String getUrl()
           
 Collection<Version> getVersions()
           
 int hashCode()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProjectImpl

public ProjectImpl(org.ofbiz.core.entity.GenericValue projectGv)
Method Detail

getId

public Long getId()
Specified by:
getId in interface Project
Returns:
the id of the project

getName

public String getName()
Specified by:
getName in interface Project
Returns:
the name of the project.

getKey

public String getKey()
Specified by:
getKey in interface Project
Returns:
the project key.

getUrl

public String getUrl()
Specified by:
getUrl in interface Project
Returns:
the project URL

getLead

public com.atlassian.crowd.embedded.api.User getLead()
Specified by:
getLead in interface Project
Returns:
the Project Lead

getLeadUser

public com.atlassian.crowd.embedded.api.User getLeadUser()
Description copied from interface: Project
Returns the Project Lead

Specified by:
getLeadUser in interface Project
Returns:
the Project Lead

getLeadUserName

public String getLeadUserName()
Specified by:
getLeadUserName in interface Project
Returns:
the user name of the project lead

getDescription

public String getDescription()
Specified by:
getDescription in interface Project
Returns:
the project description

getAssigneeType

public Long getAssigneeType()
Description copied from interface: Project
Returns the default assignee for issues that get created in this project. Returns AssigneeTypes.PROJECT_LEAD or AssigneeTypes.UNASSIGNED. Can return NULL if the default assignee has not been set for this project and this means the PROJECT LEAD is the default assignee. TODO: Write upgrade task to ensure default assignee is always set.

Specified by:
getAssigneeType in interface Project
Returns:
the default assignee. NB: Can return NULL

getCounter

public Long getCounter()
Specified by:
getCounter in interface Project
Returns:
the last number used to generate an issue key. E.g. Counter = 2, issue key: HSP-2

getComponents

public Collection<org.ofbiz.core.entity.GenericValue> getComponents()
Description copied from interface: Project
Returns the components for this Project.

Specified by:
getComponents in interface Project
Returns:
the components for this Project.
See Also:
Project.getProjectComponents()

getProjectComponents

public Collection<ProjectComponent> getProjectComponents()
Description copied from interface: Project
Returns the components for this Project.

Specified by:
getProjectComponents in interface Project
Returns:
the components for this Project.

getVersions

public Collection<Version> getVersions()
Specified by:
getVersions in interface Project
Returns:
a Collection of Version for this project

getIssueTypes

public Collection<IssueType> getIssueTypes()
Specified by:
getIssueTypes in interface Project
Returns:
a Collection of IssueType for this project

getProjectCategory

public org.ofbiz.core.entity.GenericValue getProjectCategory()
Specified by:
getProjectCategory in interface Project
Returns:
a GV containing the project category information for this project.

getAvatar

@NotNull
public Avatar getAvatar()
Description copied from interface: Project
Gives the currently-configured Avatar for this project.

Specified by:
getAvatar in interface Project
Returns:
the current Avatar, never null.

getGenericValue

public org.ofbiz.core.entity.GenericValue getGenericValue()
Specified by:
getGenericValue in interface Project
Returns:
the GenericValue backing this project object

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2002-2012 Atlassian. All Rights Reserved.