ManagementService scope

Hi

I use ManagmentService to send from an Filter Http Headers datas from my Context to Camunda Context

Blockquote
ProcessEngine engine = EngineUtil.lookupProcessEngine(“default”);
engine.getManagementService().setProperty(“mavar10”, value);

Blockquote
I could read it in my BpmCallBack

Blockquote
@Autowired
private ManagementService mmService;

Map<String, String> xx=mmService.getProperties();

Blockquote

But this service is common to all instance or not ?

Regards