private void add(IdentifiantComponent identifiant, List identifiants)throws IdentifiantException {
IdentifiantComponent ic = null;
try {
ic = (IdentifiantComponent) BeanUtils.cloneBean(identifiant);
} catch (Exception e) {
throw new IdentifiantException(e.toString());
}
ic.setId(UIDGenerator.generateId());
getVariable(ic);
identifiants.add(ic);
}