You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/gen/testing/event/event_grpc.pb.go

127 lines
5.2 KiB

// Copyright IBM Corp. 2020, 2025
// SPDX-License-Identifier: BUSL-1.1
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.6.1
// - protoc (unknown)
// source: testing/event/v1/event.proto
package event
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc.SupportPackageIsVersion9
const (
TestAuthMethodService_TestAuthenticate_FullMethodName = "/testing.event.v1.TestAuthMethodService/TestAuthenticate"
)
// TestAuthMethodServiceClient is the client API for TestAuthMethodService service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
type TestAuthMethodServiceClient interface {
// TestAuthenticate validates credentials provided and returns an Auth Token.
TestAuthenticate(ctx context.Context, in *TestAuthenticateRequest, opts ...grpc.CallOption) (*TestAuthenticateResponse, error)
}
type testAuthMethodServiceClient struct {
cc grpc.ClientConnInterface
}
func NewTestAuthMethodServiceClient(cc grpc.ClientConnInterface) TestAuthMethodServiceClient {
return &testAuthMethodServiceClient{cc}
}
func (c *testAuthMethodServiceClient) TestAuthenticate(ctx context.Context, in *TestAuthenticateRequest, opts ...grpc.CallOption) (*TestAuthenticateResponse, error) {
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
out := new(TestAuthenticateResponse)
err := c.cc.Invoke(ctx, TestAuthMethodService_TestAuthenticate_FullMethodName, in, out, cOpts...)
if err != nil {
return nil, err
}
return out, nil
}
// TestAuthMethodServiceServer is the server API for TestAuthMethodService service.
// All implementations must embed UnimplementedTestAuthMethodServiceServer
// for forward compatibility.
type TestAuthMethodServiceServer interface {
// TestAuthenticate validates credentials provided and returns an Auth Token.
TestAuthenticate(context.Context, *TestAuthenticateRequest) (*TestAuthenticateResponse, error)
mustEmbedUnimplementedTestAuthMethodServiceServer()
}
// UnimplementedTestAuthMethodServiceServer must be embedded to have
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedTestAuthMethodServiceServer struct{}
func (UnimplementedTestAuthMethodServiceServer) TestAuthenticate(context.Context, *TestAuthenticateRequest) (*TestAuthenticateResponse, error) {
return nil, status.Error(codes.Unimplemented, "method TestAuthenticate not implemented")
}
func (UnimplementedTestAuthMethodServiceServer) mustEmbedUnimplementedTestAuthMethodServiceServer() {}
func (UnimplementedTestAuthMethodServiceServer) testEmbeddedByValue() {}
// UnsafeTestAuthMethodServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to TestAuthMethodServiceServer will
// result in compilation errors.
type UnsafeTestAuthMethodServiceServer interface {
mustEmbedUnimplementedTestAuthMethodServiceServer()
}
func RegisterTestAuthMethodServiceServer(s grpc.ServiceRegistrar, srv TestAuthMethodServiceServer) {
// If the following call panics, it indicates UnimplementedTestAuthMethodServiceServer was
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
t.testEmbeddedByValue()
}
s.RegisterService(&TestAuthMethodService_ServiceDesc, srv)
}
func _TestAuthMethodService_TestAuthenticate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(TestAuthenticateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(TestAuthMethodServiceServer).TestAuthenticate(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: TestAuthMethodService_TestAuthenticate_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(TestAuthMethodServiceServer).TestAuthenticate(ctx, req.(*TestAuthenticateRequest))
}
return interceptor(ctx, in, info, handler)
}
// TestAuthMethodService_ServiceDesc is the grpc.ServiceDesc for TestAuthMethodService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var TestAuthMethodService_ServiceDesc = grpc.ServiceDesc{
ServiceName: "testing.event.v1.TestAuthMethodService",
HandlerType: (*TestAuthMethodServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "TestAuthenticate",
Handler: _TestAuthMethodService_TestAuthenticate_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "testing/event/v1/event.proto",
}