I've tried :
AbstractItem item = (AbstractItem) Jenkins.getInstance().getItem("myjob");
File directoryConfigXml = item.getConfigFile().getFile().getParentFile();
Item updatedItem = Items.load(item.getParent(), directoryConfigXml);
Jenkins.getInstance().putItem((TopLevelItem)updatedItem);
It works, but it delete and re-create the job.
Nobody knows a more simple way to just reload the job configuration from disk (without having to reload all Jenkins configurations) ?
Thank you in advance for any help.