Package com.atlassian.jira.project
Interface ProjectPropertiesManager
- All Known Implementing Classes:
DefaultProjectPropertiesManager
public interface ProjectPropertiesManager
Allows to retrieve and store arbitrary properties against a project.
- Since:
- v6.1
-
Method Summary
Modifier and TypeMethodDescriptioncom.opensymphony.module.propertyset.PropertySet
getPropertySet
(long projectId) Retrieve all properties associated with the given project.com.opensymphony.module.propertyset.PropertySet
getPropertySet
(Project project) Retrieve all properties associated with the given project.
-
Method Details
-
getPropertySet
Retrieve all properties associated with the given project.The returned PropertySet is mutable and could be used to directly update data in database.
- Parameters:
project
- project- Returns:
- the property set associated with the project
- Since:
- v6.1
-
getPropertySet
com.opensymphony.module.propertyset.PropertySet getPropertySet(long projectId) Retrieve all properties associated with the given project.The returned PropertySet is mutable and could be used to directly update data in database.
- Parameters:
projectId
- ID of the project- Returns:
- the property set associated with the project
- Since:
- v9.15
-