*/
public IStatus execute(IProgressMonitor monitor) throws TargetModuleIdNotFoundException, CoreException {
String configId = ModuleArtifactMapper.getInstance().resolve(getServer(), getModule());
if(configId == null) {
IGeronimoServer gs = (IGeronimoServer) getServer().getAdapter(IGeronimoServer.class);
try {
configId = gs.getVersionHandler().getConfigID(getModule());
} catch (Exception e) {
throw new CoreException(new Status(IStatus.ERROR,Activator.PLUGIN_ID,"Module config Id not found for undeployment",e));
}
}