@@ -61,7 +61,7 @@ private String getRouteName(Enum<?> routeName) {
6161 * @param body Body of the request for POST (can be null for GET)
6262 * @return JobGetInfos for chaining
6363 */
64- public JobGetInfos getRoutes (VersionType versionType , MethodType methodType , Enum <?> routeName , Map <String , ?> body ) {
64+ public JobGetInfos getRoutes (VersionProvider versionType , MethodType methodType , Enum <?> routeName , Map <String , ?> body ) {
6565 return getRoutes (versionType , methodType , getRouteName (routeName ), body , null , null );
6666 }
6767
@@ -72,7 +72,7 @@ public JobGetInfos getRoutes(VersionType versionType, MethodType methodType, Enu
7272 * @param routeName Name of the route in the YAML file
7373 * @return JobGetInfos for chaining
7474 */
75- public JobGetInfos getRoutes (VersionType versionType , MethodType methodType , Enum <?> routeName ) {
75+ public JobGetInfos getRoutes (VersionProvider versionType , MethodType methodType , Enum <?> routeName ) {
7676 return getRoutes (versionType , methodType , getRouteName (routeName ), null , null , null );
7777 }
7878
@@ -125,7 +125,7 @@ public JobGetInfos getRoutes(MethodType methodType, String routeName) {
125125 * @param routeName Nom de la route dans le fichier YAML
126126 * @return JobGetInfos pour chaînage
127127 */
128- public JobGetInfos getRoutes (VersionType versionType , MethodType methodType , String routeName ) {
128+ public JobGetInfos getRoutes (VersionProvider versionType , MethodType methodType , String routeName ) {
129129 return getRoutes (versionType , methodType , routeName , null , null , null );
130130 }
131131
@@ -137,7 +137,7 @@ public JobGetInfos getRoutes(VersionType versionType, MethodType methodType, Str
137137 * @param body Body of the request for POST (can be null for GET)
138138 * @return JobGetInfos for chaining
139139 */
140- public JobGetInfos getRoutes (VersionType versionType , MethodType methodType , String routeName , Map <String , ?> body ) {
140+ public JobGetInfos getRoutes (VersionProvider versionType , MethodType methodType , String routeName , Map <String , ?> body ) {
141141 return getRoutes (versionType , methodType , routeName , body , null , null );
142142 }
143143
@@ -176,7 +176,7 @@ public JobGetInfos getRoutes(MethodType methodType, Enum<?> routeName, Map<Strin
176176 * @param query Additional query parameters for the request
177177 * @return JobGetInfos for chaining
178178 */
179- public <R > JobGetInfos getRoutes (VersionType versionType , MethodType methodType , R routeName , Map <String , ?> body , Map <String , ?> params , Map <String , ?> query ) {
179+ public <R > JobGetInfos getRoutes (VersionProvider versionType , MethodType methodType , R routeName , Map <String , ?> body , Map <String , ?> params , Map <String , ?> query ) {
180180 try {
181181 String route = connectLib .getRoute (routeName .toString ().toLowerCase ());
182182
0 commit comments