Created
April 17, 2012 18:17
-
-
Save ghinch/2407944 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AutomatedIngestBoss extends BaseBoss<AutomatedIngestSource> { | |
public static AutomatedIngestBoss INSTANCE; | |
<<<<<<< HEAD | |
private static final Logger LOG = Logger.getLogger(AutomatedIngestBoss.class); | |
@Autowired(required = true) private AutomatedIngestSourceDao automatedIngestSourceDao; | |
@Autowired(required = true) private SftpPollingService sftpPollingService; | |
@Value("${autostart.automated_ingest.boss}") private boolean autostart; | |
======= | |
@Autowired private AutomatedIngestSourceDao automatedIngestSourceDao; | |
@Autowired private SftpPollingService sftpPollingService; | |
@Value("${autostart.automated_ingest.boss:true}") private boolean autostart; | |
>>>>>>> RB_3.6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment