public LatticeBootDashModel(LatticeRunTarget target, BootDashModelContext context) {
   super(target);
   this.store =
       PropertyStoreFactory.createForScope(target.getType(), context.getRunTargetProperties());
   this.ltcTarget = target;
   this.context = context;
 }
 private synchronized ReceptorClient getReceptor() {
   if (receptor == null) {
     receptor = new ReceptorClient(ltcTarget.getReceptorHost());
   }
   return receptor;
 }