diff --git a/services/src/main/java/io/grpc/services/ProtoReflectionService.java b/services/src/main/java/io/grpc/services/ProtoReflectionService.java new file mode 100644 index 00000000000..b00b68d8991 --- /dev/null +++ b/services/src/main/java/io/grpc/services/ProtoReflectionService.java @@ -0,0 +1,57 @@ +/* + * Copyright 2016 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.grpc.services; + +import io.grpc.BindableService; +import io.grpc.ExperimentalApi; +import io.grpc.reflection.v1alpha.ServerReflectionGrpc; +import io.grpc.reflection.v1alpha.ServerReflectionRequest; +import io.grpc.reflection.v1alpha.ServerReflectionResponse; +import io.grpc.stub.StreamObserver; + +/** + * Provides a reflection service for Protobuf services (including the reflection service itself). + * + *

Separately tracks mutable and immutable services. Throws an exception if either group of + * services contains multiple Protobuf files with declarations of the same service, method, type, or + * extension. + * + * @deprecated Use {@link io.grpc.protobuf.services.ProtoReflectionService} instead. + */ +@Deprecated +@ExperimentalApi("https://github.com/grpc/grpc-java/issues/2222") +public final class ProtoReflectionService extends ServerReflectionGrpc.ServerReflectionImplBase { + private final io.grpc.protobuf.services.ProtoReflectionService delegate; + + private ProtoReflectionService() { + delegate = (io.grpc.protobuf.services.ProtoReflectionService) + io.grpc.protobuf.services.ProtoReflectionService.newInstance(); + } + + /** + * Creates a instance of {@link io.grpc.protobuf.services.ProtoReflectionService}. + */ + public static BindableService newInstance() { + return new ProtoReflectionService(); + } + + @Override + public StreamObserver serverReflectionInfo( + StreamObserver responseObserver) { + return delegate.serverReflectionInfo(responseObserver); + } +}