> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Setting up the default context values

This page provides a description of how we set up the context values. The techniques
employed are generic examples that can be extended, adapted and repeated
for any use case that we need. In all cases, we make minimal changes to
the MR application.

<table><thead><tr><th>Cube</th><th>Bean name</th><th>Class (where applicable)</th></tr></thead><tbody><tr><td>Var-ES Cube</td><td>contextValueVaRESCube</td><td>VarESCubeContextValueConfig</td></tr><tr><td>VaR-ES Summary Cube</td><td>contextValueVaRESSummaryCube</td><td>VarESSummaryCubeContextValueConfig</td></tr><tr><td>Sensitivity Cube</td><td>contextValueSensitivityCube</td><td>SensiCubeContextValueConfig</td></tr><tr><td>Sensitivity Summary Cube</td><td>contextValueSensitivitySummaryCube</td><td>SensiSummaryCubeContextValueConfig</td></tr><tr><td>PLCube</td><td>contextValuePLCube</td><td>PnlCubeContextValueConfig</td></tr><tr><td>PL Summary Cube</td><td>contextValuePLSummaryCube</td><td>N/A in Atoti Market Risk.</td></tr><tr><td>Combined Cube</td><td>contextValueMRCombinedCube</td><td>MRCombinedCubeContextValueConfig</td></tr></tbody></table>

The context values are defined in the specific mr-\*- a specific configuration class `ContextValueConfig` within
`/mr-application/src/main/java/com/activeviam/risk/starter/cfg/pivot/impl`:

```
    @Bean
    public List<IContextValue> contextValuePLCube() {
        return List.of(
                QueriesTimeLimit.of(queriesTimeLimit, TimeUnit.SECONDS),
                [...]
        );
    }
```
