package com.grendelscan.testing.jobs;
import com.grendelscan.scan.InterruptedScanException;
import com.grendelscan.testing.modules.AbstractTestModule;
import com.grendelscan.testing.modules.types.ByHttpQueryTest;
public class ByHttpQueryTestJob extends TransactionTestJob
{
/**
*
*/
private static final long serialVersionUID = 1L;
public ByHttpQueryTestJob(final Class<? extends AbstractTestModule> moduleClass, final int transactionID)
{
super(moduleClass, transactionID);
}
@Override
public void internalRunTest() throws InterruptedScanException
{
((ByHttpQueryTest) getModule()).testByQuery(transactionID, getId());
}
}