*/
public DeploymentConfiguration createConfiguration(DeployableObject obj) throws InvalidModuleException
{
// do some stuff to figure out what kind of config to return.
if (obj.getType().equals(ModuleType.WAR))
return new WarConfiguration(obj);
throw new InvalidModuleException("CreateConfiguration: Module type not yet supported");
}