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 Type
    Method
    Description
    com.opensymphony.module.propertyset.PropertySet
    getPropertySet(long projectId)
    Retrieve all properties associated with the given project.
    com.opensymphony.module.propertyset.PropertySet
    Retrieve all properties associated with the given project.
  • Method Details

    • getPropertySet

      com.opensymphony.module.propertyset.PropertySet getPropertySet(Project project)
      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