Package com.denimgroup.threadfix.service.queue.scheduledjob

Source Code of com.denimgroup.threadfix.service.queue.scheduledjob.ScheduledScanJob

////////////////////////////////////////////////////////////////////////
//
//     Copyright (c) 2009-2014 Denim Group, Ltd.
//
//     The contents of this file are subject to the Mozilla Public License
//     Version 2.0 (the "License"); you may not use this file except in
//     compliance with the License. You may obtain a copy of the License at
//     http://www.mozilla.org/MPL/
//
//     Software distributed under the License is distributed on an "AS IS"
//     basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
//     License for the specific language governing rights and limitations
//     under the License.
//
//     The Original Code is ThreadFix.
//
//     The Initial Developer of the Original Code is Denim Group, Ltd.
//     Portions created by Denim Group, Ltd. are Copyright (C)
//     Denim Group, Ltd. All Rights Reserved.
//
//     Contributor(s): Denim Group, Ltd.
//
////////////////////////////////////////////////////////////////////////

package com.denimgroup.threadfix.service.queue.scheduledjob;

import com.denimgroup.threadfix.logging.SanitizedLogger;
import com.denimgroup.threadfix.service.queue.QueueSender;
import org.quartz.Job;
import org.quartz.JobDataMap;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;

import java.util.Date;

/**
* Created with IntelliJ IDEA.
* User: stran
* Date: 1/15/14
* Time: 2:01 PM
* To change this template use File | Settings | File Templates.
*/

public class ScheduledScanJob implements Job {

    private static final SanitizedLogger log = new SanitizedLogger(ScheduledScanJob.class);

    @Override
    public void execute(JobExecutionContext context) throws JobExecutionException {
        String jobName = context.getJobDetail().getFullName();
        log.info("ScheduledScanJob " + jobName + " executing at " + new Date() + ". Sending request to queue.");

        JobDataMap dataMap = context.getJobDetail().getJobDataMap();
        int appId = dataMap.getInt("appId");
        String scanner = dataMap.getString("scanner");
        QueueSender queueSender = (QueueSender)dataMap.get("queueSender");

        queueSender.addScheduledScan(appId, scanner);

    }
}
TOP

Related Classes of com.denimgroup.threadfix.service.queue.scheduledjob.ScheduledScanJob

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.