Skip to content
Snippets Groups Projects
Commit 933f3b56 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6710 fix class imports; fix bean initialization

parent 915ffc37
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,5 @@ net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration ...@@ -2,6 +2,5 @@ net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientTraceAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration
net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration
...@@ -2,7 +2,6 @@ net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration ...@@ -2,7 +2,6 @@ net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcClientTraceAutoConfiguration
net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration
net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcAdviceAutoConfiguration net.devh.boot.grpc.server.autoconfigure.GrpcAdviceAutoConfiguration
......
...@@ -23,6 +23,7 @@ import de.ozgcloud.command.VorgangCreatedEvent; ...@@ -23,6 +23,7 @@ import de.ozgcloud.command.VorgangCreatedEvent;
import de.ozgcloud.common.test.ITCase; import de.ozgcloud.common.test.ITCase;
import de.ozgcloud.notification.antragsteller.AntragstellerNotificationEventListener; import de.ozgcloud.notification.antragsteller.AntragstellerNotificationEventListener;
import de.ozgcloud.notification.user.UserNotificationEventListener; import de.ozgcloud.notification.user.UserNotificationEventListener;
import de.ozgcloud.processor.ProcessorManagerConfiguration;
import de.ozgcloud.processor.processor.ProcessorService; import de.ozgcloud.processor.processor.ProcessorService;
import de.ozgcloud.processor.vorgang.ProcessorVorgangMapper; import de.ozgcloud.processor.vorgang.ProcessorVorgangMapper;
import de.ozgcloud.vorgang.command.CommandCreatedEventTestFactory; import de.ozgcloud.vorgang.command.CommandCreatedEventTestFactory;
...@@ -62,7 +63,7 @@ class VorgangEventListenerITCase { ...@@ -62,7 +63,7 @@ class VorgangEventListenerITCase {
@MockBean @MockBean
private ProcessorService vorgagnProcessorService; private ProcessorService vorgagnProcessorService;
@MockBean @MockBean
@Qualifier("processorManager_OzgCloudCommandService") @Qualifier(ProcessorManagerConfiguration.OZGCLOUD_VORGANG_SERVICE_NAME)
private OzgCloudVorgangService ozgCloudVorgangService; private OzgCloudVorgangService ozgCloudVorgangService;
@MockBean @MockBean
private ProcessorVorgangMapper processorVorgangMapper; private ProcessorVorgangMapper processorVorgangMapper;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment