Recently looked for an in vRO cache system and came across https://github.com/dimitrovvlado/o11n-plugin-cache This is quite handy if you need a place to temporarily store values, eighter while provisioning, or to avoid using the vRO Lock system. Could be a perfect spot for storing info while all your workflows execute and need access to a token: CacheManager.mapService.putForMap("tokenStore", 'my-access-token', token, 15, CacheTimeUnit.MINUTES); var my-access-token = CacheManager.mapService.getForMap("tokenStore", my-access-token'); Other use cases could be to make sure a sequence number is not reused or an FQDN is kept unique until machines have properly provisioned.