Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Yes, with the following caveats:

a) It's best to modify impacts, probabilities, and risk levels (exposures) by clicking in the Risk Model view. That ensures that the residual variants of those values are kept in sync; and

b) You can rename the options for the Treatment custom field, but if you rename "Avoid", or "Mitigate", or "Transfer" to something else, then you won't see warnings in the Issue View about missing treatment plans. That's because of this bit of code:

/**
     * Determines whether this treatment must be accompanied by a treatment plan.
     * <p>
     * A treatment plan is required if the treatment is to Avoid, Mitigate, or Transfer the risk.
     *
     * @return true if this treatment requires a plan; false otherwise
     */
    public boolean requiresPlan() {
        return
                displayName.equalsIgnoreCase("avoid") ||
                displayName.equalsIgnoreCase("mitigate") ||
                displayName.equalsIgnoreCase("transfer");
    }

  • No labels