blob: 136a26f9208c8acd18134de5b6cd5fca5d02da4c [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
package org.eclipse.openk.core.controller;
import org.apache.log4j.Logger;
import org.eclipse.openk.core.exceptions.HttpStatusException;
import java.util.TimerTask;
public class ServicesConfigCacheTimerTask extends TimerTask {
private static final Logger logger = Logger.getLogger(ServicesConfigCacheTimerTask.class.getName());
private String configFileName;
public ServicesConfigCacheTimerTask( String configFileName ) {
this.configFileName = configFileName;
}
@Override
public void run() {
try {
ServicesConfigCache.getInstance().readServerDistribution(this.configFileName);
} catch (HttpStatusException e) {
logger.error("Error reading ServerDistributionFile", e);
}
}
}