Skip to content
Snippets Groups Projects
Commit 58b6bbea authored by Felix Reichenbach's avatar Felix Reichenbach
Browse files

OZG-7908 add dummy implementations for api

parent 3b2eef49
No related branches found
No related tags found
1 merge request!17Ozg 7908 aggregation manager server grpc interface
......@@ -51,6 +51,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Own projects -->
<dependency>
<groupId>de.ozgcloud.aggregation</groupId>
<artifactId>aggregation-manager-interface</artifactId>
</dependency>
</dependencies>
<build>
......
package de.ozgcloud.aggregation.aggregatedvorgang;
import de.ozgcloud.aggregation.aggregatedvorgang.AggregationServiceGrpc.AggregationServiceImplBase;
import io.grpc.stub.StreamObserver;
class AggregationGrpcService extends AggregationServiceImplBase {
@Override
public StreamObserver<SubmitAggregatedVorgangRequest> submitAggregatedVorgangs(StreamObserver<SubmitAggregatedVorgangResponse> responseObserver) {
// Implement in OZG-7909
return null;
}
}
package de.ozgcloud.aggregation.configuration;
import de.ozgcloud.aggregation.configuration.AggregationConfigurationServiceGrpc.AggregationConfigurationServiceImplBase;
import io.grpc.stub.StreamObserver;
class AggregationConfigurationGrpcService extends AggregationConfigurationServiceImplBase {
@Override
public void getAggregationConfigurations(GetAggregationConfigurationsRequest request,
StreamObserver<GetAggregationConfigurationsResponse> responseObserver) {
// Implement in OZG-????
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment