blob: 8d9b36d4586cb03ae3d7b7ec01144581369ad96f [file] [log] [blame]
// Copyright 2020 Google LLC
//
// 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 com.google.crypto.tink.testing;
import com.google.crypto.tink.Version;
import com.google.crypto.tink.testing.proto.MetadataGrpc.MetadataImplBase;
import com.google.crypto.tink.testing.proto.ServerInfoRequest;
import com.google.crypto.tink.testing.proto.ServerInfoResponse;
import io.grpc.stub.StreamObserver;
import java.security.GeneralSecurityException;
/** Implement a gRPC service for the server's metadata. */
public final class MetadataServiceImpl extends MetadataImplBase {
public MetadataServiceImpl() throws GeneralSecurityException {
}
@Override
public void getServerInfo(
ServerInfoRequest request, StreamObserver<ServerInfoResponse> responseObserver) {
ServerInfoResponse response =
ServerInfoResponse.newBuilder()
.setLanguage("java")
.setTinkVersion(Version.TINK_VERSION)
.build();
responseObserver.onNext(response);
responseObserver.onCompleted();
}
}