Skip to content

Commit

Permalink
correction
Browse files Browse the repository at this point in the history
  • Loading branch information
khergalant committed Jul 16, 2024
1 parent 6281a8a commit 85d72dc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public List<SiScolAnneeUni> getListSiScolAnneeUni() throws SiScolException {
params.add(ConstanteUtils.PEGASE_URI_ODF_ESPACE_TYPE, ConstanteUtils.PEGASE_URI_ODF_ESPACE_TYPE_PERIODE);

final URI uri = SiScolRestUtils.getURIForService(configController.getConfigPegaseUrl().getOdf(),
SiScolRestUtils.getSubServiceWhithoutSlash(ConstanteUtils.PEGASE_URI_ODF_ETABLISSEMENTS, configController.getConfigPegaseAuthEtab().getEtab(), ConstanteUtils.PEGASE_URI_ODF_ESPACE),
SiScolRestUtils.getSubServiceWhithoutSlash(ConstanteUtils.PEGASE_URI_ODF_ETABLISSEMENT, configController.getConfigPegaseAuthEtab().getEtab(), ConstanteUtils.PEGASE_URI_ODF_ESPACE),
params);

logger.debug("Call ws pegase, URI = " + uri);
Expand Down Expand Up @@ -728,7 +728,7 @@ public List<FormationPegase> getListFormationPegase(final String search, final I
params.add(ConstanteUtils.PEGASE_URI_ODF_OBJETS_MAQUETTE_VALIDE, ConstanteUtils.PEGASE_TRUE_PARAM_VALUE);

final URI uri = SiScolRestUtils.getURIForService(configController.getConfigPegaseUrl().getOdf(),
SiScolRestUtils.getSubServiceWhithoutSlash(ConstanteUtils.PEGASE_URI_ODF_ETABLISSEMENTS, configController.getConfigPegaseAuthEtab().getEtab(), ConstanteUtils.PEGASE_URI_ODF_OBJET_MAQUETTE),
SiScolRestUtils.getSubServiceWhithoutSlash(ConstanteUtils.PEGASE_URI_ODF_ETABLISSEMENT, configController.getConfigPegaseAuthEtab().getEtab(), ConstanteUtils.PEGASE_URI_ODF_OBJET_MAQUETTE),
params);

logger.debug("Call ws pegase, service = " + ConstanteUtils.PEGASE_URL_ODF + ", URI = " + uri);
Expand Down Expand Up @@ -756,7 +756,7 @@ public String getTypDiplomeByFormation(final FormationPegase formation) throws S
final HttpEntity<FormationPegase> httpEntity = new HttpEntity<>(headers);

final URI uri = SiScolRestUtils.getURIForService(configController.getConfigPegaseUrl().getOdf(),
SiScolRestUtils.getSubServiceWhithoutSlash(ConstanteUtils.PEGASE_URI_ODF_ETABLISSEMENTS, configController.getConfigPegaseAuthEtab().getEtab(),
SiScolRestUtils.getSubServiceWhithoutSlash(ConstanteUtils.PEGASE_URI_ODF_ETABLISSEMENT, configController.getConfigPegaseAuthEtab().getEtab(),
ConstanteUtils.PEGASE_URI_ODF_OBJET_MAQUETTE, formation.getId()));

logger.debug("Call ws pegase, service = " + ConstanteUtils.PEGASE_URL_ODF + ", URI = " + uri);
Expand Down

0 comments on commit 85d72dc

Please sign in to comment.