001package dk.netarkivet.harvester.tools.dummy;
002
003import dk.netarkivet.common.utils.ApplicationUtils;
004
005/**
006 * This application starts the FaultyHarvestControllerServer.
007 *
008 * @see HarvestControllerServer
009 */
010public class HarvestControllerApplication {
011
012        /**
013         * Runs the HarvestController Application. Settings are read from config files.
014         *
015         * @param args an empty array
016         */
017        public static void main(String[] args) {
018                ApplicationUtils.startApp(FaultyHarvestControllerServer.class, args);
019        }
020
021}