Skip to content

Instantly share code, notes, and snippets.

@ghinch
Created April 17, 2012 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ghinch/2407951 to your computer and use it in GitHub Desktop.
Save ghinch/2407951 to your computer and use it in GitHub Desktop.
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