|
6 | 6 | */
|
7 | 7 | package org.gridsuite.gateway;
|
8 | 8 |
|
9 |
| -import org.gridsuite.gateway.endpoints.CgmesGlServer; |
10 | 9 | import org.gridsuite.gateway.endpoints.*;
|
11 | 10 | import org.springframework.cloud.gateway.route.RouteLocator;
|
12 | 11 | import org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder;
|
@@ -34,34 +33,24 @@ public RouteLocator myRoutes(RouteLocatorBuilder builder, ApplicationContext con
|
34 | 33 | return builder.routes()
|
35 | 34 | .route(p -> context.getBean(StudyServer.class).getRoute(p))
|
36 | 35 | .route(p -> context.getBean(CaseServer.class).getRoute(p))
|
37 |
| - .route(p -> context.getBean(MergeServer.class).getRoute(p)) |
38 | 36 | .route(p -> context.getBean(StudyNotificationServer.class).getRoute(p))
|
39 |
| - .route(p -> context.getBean(MergeNotificationServer.class).getRoute(p)) |
40 | 37 | .route(p -> context.getBean(DirectoryNotificationServer.class).getRoute(p))
|
41 | 38 | .route(p -> context.getBean(ContingencyServer.class).getRoute(p))
|
42 | 39 | .route(p -> context.getBean(ConfigServer.class).getRoute(p))
|
43 | 40 | .route(p -> context.getBean(ConfigNotificationServer.class).getRoute(p))
|
44 | 41 | .route(p -> context.getBean(DirectoryServer.class).getRoute(p))
|
45 | 42 | .route(p -> context.getBean(ExploreServer.class).getRoute(p))
|
46 |
| - .route(p -> context.getBean(CgmesBoundaryServer.class).getRoute(p)) |
47 | 43 | .route(p -> context.getBean(DynamicMappingServer.class).getRoute(p))
|
48 | 44 | .route(p -> context.getBean(FilterServer.class).getRoute(p))
|
49 |
| - .route(p -> context.getBean(ReportServer.class).getRoute(p)) |
50 | 45 | .route(p -> context.getBean(NetworkModificationServer.class).getRoute(p))
|
51 | 46 | .route(p -> context.getBean(NetworkConversionServer.class).getRoute(p))
|
52 |
| - .route(p -> context.getBean(OdreServer.class).getRoute(p)) |
53 |
| - .route(p -> context.getBean(GeoDataServer.class).getRoute(p)) |
54 | 47 | .route(p -> context.getBean(UserAdminServer.class).getRoute(p))
|
55 |
| - .route(p -> context.getBean(CgmesGlServer.class).getRoute(p)) |
56 | 48 | .route(p -> context.getBean(SensitivityAnalysisServer.class).getRoute(p))
|
57 | 49 | .route(p -> context.getBean(LoadFlowServer.class).getRoute(p))
|
58 | 50 | .route(p -> context.getBean(SecurityAnalysisServer.class).getRoute(p))
|
59 | 51 | .route(p -> context.getBean(DynamicSimulationServer.class).getRoute(p))
|
60 |
| - .route(p -> context.getBean(CaseImportServer.class).getRoute(p)) |
61 | 52 | .route(p -> context.getBean(VoltageInitServer.class).getRoute(p))
|
62 | 53 | .route(p -> context.getBean(ShortCircuitServer.class).getRoute(p))
|
63 |
| - .route(p -> context.getBean(StateEstimationServer.class).getRoute(p)) |
64 |
| - .route(p -> context.getBean(StateEstimationOrchestratorServer.class).getRoute(p)) |
65 | 54 | .build();
|
66 | 55 | }
|
67 | 56 | }
|
0 commit comments