Page tree

This documentation relates to an older version 3.6 of the Structure Plugin for JIRA. View the current documentation home.

Skip to end of metadata
Go to start of metadata

A forest specification, or ForestSpec, is a way for your code to identify the forest that you'd like to access. The forest may come from different sources – it could be a structure, it could be a transformed structure, it could be a result of query or some other types of forest source.

So the first step before you read or update a forest is to create an instance of ForestSpec. Here are some examples of how you can do that.

Desired forestForestSpec expression
Base Content
Structure #123
ForestSpec.structure(123)
Result of a JQL query
ForestSpec.sQuery("jql", "priority = Blocker")
Result of a text query
ForestSpec.sQuery("text", "text to find")
Adjusted Content
Structure #123, sorted by Priority
ForestSpec.structure(123).transform(
    CoreStructureGenerators.SORTER_ATTRIBUTE, ImmutableMap.of(
        "attribute", (Object) ImmutableMap.of("id", IssueFieldConstants.PRIORITY, "format", "order")
        "desc", true
    )
);
Structure #123, skeleton only (without dynamic content)
ForestSpec.skeleton(123)
Structure #123, with title row
ForestSpec.skeleton(123).withTitle()


More details are available in Javadocs for ForestSpec.

  • No labels