DeploymentObject deploymentObject = null;
try
{
deploymentObject = new StandardDeploymentObject(aFile);
DeploymentEvent event = new DeploymentEventImpl(DeploymentEvent.EVENT_TYPE_REDEPLOY,
deploymentObject);
log.info("Re-deploying " + aFile.getAbsolutePath());
dispatch(event);
if (event.getStatus() == DeploymentEvent.STATUS_OKAY)
{
fileDates.put(fileName, new Long(currentModifiedDate));
}
else
{