You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove AICoreServiceImpl field from AbstractCrudHandler / all handlers. Obtain the service reference from EventContext at invocation time instead.
Replace string-literal event names ("resourceGroupForTenant", "stop", etc.) with compile-safe constants either generated via CDS build (cds4j generated event context interfaces) or declared as String constants on the interface/entity.
Switch to typesafe handler APIs: define typed EventContext subinterfaces for each action (e.g., ResourceGroupForTenantContext, StopDeploymentContext) so handlers declare typed parameters instead of doing Map extraction from context.get("data").
Verify that DeploymentHandler, ResourceGroupHandler, ConfigurationHandler, MockEntityHandler, and AICoreApplicationServiceHandler are also decoupled.