Created
April 17, 2012 18:17
-
-
Save ghinch/2407951 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 ManagedDataLineIngestBoss extends BaseBoss<ManagedDataLine> { | |
public static ManagedDataLineIngestBoss INSTANCE; | |
<<<<<<< HEAD | |
private static final Logger LOG = Logger.getLogger(ManagedDataLineIngestBoss.class); | |
@Autowired(required = true) private ManagedDataLineDao dataLineDao; | |
@Autowired(required = true) private IngestTimelineEntryDao timelineEntryDao; | |
@Autowired(required = true) private IngestionService ingestionService; | |
@Autowired(required = true) private AdministrativeNotifier notifier; | |
@Value("${autostart.dataline_ingest.boss:true}") private boolean autostart; | |
@Override | |
protected Logger log() { | |
return LOG; | |
} | |
======= | |
@Autowired private ManagedDataLineDao dataLineDao; | |
@Autowired private IngestTimelineEntryDao timelineEntryDao; | |
@Autowired private IngestionService ingestionService; | |
@Autowired private AdministrativeNotifier notifier; | |
@Value("${autostart.dataline_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