@Override
public void run() {
LOGGER.finer("Executing scheduled task....");
final URLFetchService urlFetchService = URLFetchServiceFactory.getURLFetchService();
final HTTPRequest request = new HTTPRequest();
try {
request.setURL(new URL(url));
request.setRequestMethod(HTTPRequestMethod.GET);
urlFetchService.fetchAsync(request);
LOGGER.log(Level.FINER, "Executed scheduled task[url={0}]", url);
} catch (final Exception e) {
LOGGER.log(Level.SEVERE, "Scheduled task execute failed", e);