{
m_aParams = _aParams;
m_aDynamicClassLoader = new DynamicClassLoader();
DescGetter dg = new APIDescGetter();
String job = (String) m_aParams.get("TestJob");
String ExclusionFile = (String) m_aParams.get("ExclusionList");
Vector exclusions = null;
boolean retValue = true;
m_isDebug = m_aParams.getBool("DebugIsActive");
logging = m_aParams.getBool("LoggingIsActive");
keepdocument = m_aParams.getBool("KeepDocument");
newOffice = m_aParams.getBool(util.PropertyName.NEW_OFFICE_INSTANCE);
if (keepdocument)
{
System.setProperty("KeepDocument", "true");
}
if (ExclusionFile != null)
{
exclusions = getExclusionList(ExclusionFile, m_isDebug);
}
//get Job-Descriptions
// System.out.println("Getting Descriptions for Job: " + job);
String sDescriptionPath = (String) m_aParams.get("DescriptionPath");
DescEntry[] entries = dg.getDescriptionFor(job, sDescriptionPath, m_isDebug);
// System.out.println();
if (entries == null)
{