@Override
 public void registerPVToAppliance(String pvName, ApplianceInfo applianceInfo)
     throws AlreadyRegisteredException {
   super.registerPVToAppliance(pvName, applianceInfo);
   if (applianceInfo.getIdentity().equals(myApplianceInfo.getIdentity())) {
     logger.debug("Adding pv " + pvName + " to this appliance's pvs and to ETL");
     this.pvsForThisAppliance.add(pvName);
     if (this.getETLLookup() != null) {
       this.getETLLookup().addETLJobsForUnitTests(pvName, this.getTypeInfoForPV(pvName));
     }
   }
 }