@Override
  public void initialize(ServletContext sce) throws ConfigException {
    super.initialize(sce);

    this.retrievalState = new SampleRetrievalState(this);
    if (this.engineContext != null) {
      this.engineContext.setDisconnectCheckTimeoutInMinutesForTestingPurposesOnly(1);
    }
  }
 @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));
     }
   }
 }