auth_service

package
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 27, 2024 License: GPL-3.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AuthService_LogIn_FullMethodName                = "/auth_service.AuthService/LogIn"
	AuthService_RefreshToken_FullMethodName         = "/auth_service.AuthService/RefreshToken"
	AuthService_LogOut_FullMethodName               = "/auth_service.AuthService/LogOut"
	AuthService_CloseSessions_FullMethodName        = "/auth_service.AuthService/CloseSessions"
	AuthService_AddPermission_FullMethodName        = "/auth_service.AuthService/AddPermission"
	AuthService_RevokePermission_FullMethodName     = "/auth_service.AuthService/RevokePermission"
	AuthService_AddRolePermission_FullMethodName    = "/auth_service.AuthService/AddRolePermission"
	AuthService_RevokeRolePermission_FullMethodName = "/auth_service.AuthService/RevokeRolePermission"
	AuthService_AddRole_FullMethodName              = "/auth_service.AuthService/AddRole"
	AuthService_RevokeRole_FullMethodName           = "/auth_service.AuthService/RevokeRole"
)

Variables

View Source
var AuthService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "auth_service.AuthService",
	HandlerType: (*AuthServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "LogIn",
			Handler:    _AuthService_LogIn_Handler,
		},
		{
			MethodName: "RefreshToken",
			Handler:    _AuthService_RefreshToken_Handler,
		},
		{
			MethodName: "LogOut",
			Handler:    _AuthService_LogOut_Handler,
		},
		{
			MethodName: "CloseSessions",
			Handler:    _AuthService_CloseSessions_Handler,
		},
		{
			MethodName: "AddPermission",
			Handler:    _AuthService_AddPermission_Handler,
		},
		{
			MethodName: "RevokePermission",
			Handler:    _AuthService_RevokePermission_Handler,
		},
		{
			MethodName: "AddRolePermission",
			Handler:    _AuthService_AddRolePermission_Handler,
		},
		{
			MethodName: "RevokeRolePermission",
			Handler:    _AuthService_RevokeRolePermission_Handler,
		},
		{
			MethodName: "AddRole",
			Handler:    _AuthService_AddRole_Handler,
		},
		{
			MethodName: "RevokeRole",
			Handler:    _AuthService_RevokeRole_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "protobuf/service/auth.proto",
}

AuthService_ServiceDesc is the grpc.ServiceDesc for AuthService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_protobuf_service_auth_proto protoreflect.FileDescriptor

Functions

func RegisterAuthServiceServer

func RegisterAuthServiceServer(s grpc.ServiceRegistrar, srv AuthServiceServer)

Types

type AddPermissionRequest

type AddPermissionRequest struct {
	Permission string `protobuf:"bytes,1,opt,name=permission,proto3" json:"permission,omitempty"`
	// contains filtered or unexported fields
}

func (*AddPermissionRequest) Descriptor deprecated

func (*AddPermissionRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddPermissionRequest.ProtoReflect.Descriptor instead.

func (*AddPermissionRequest) GetPermission

func (x *AddPermissionRequest) GetPermission() string

func (*AddPermissionRequest) ProtoMessage

func (*AddPermissionRequest) ProtoMessage()

func (*AddPermissionRequest) ProtoReflect

func (x *AddPermissionRequest) ProtoReflect() protoreflect.Message

func (*AddPermissionRequest) Reset

func (x *AddPermissionRequest) Reset()

func (*AddPermissionRequest) String

func (x *AddPermissionRequest) String() string

type AddPermissionResponse

type AddPermissionResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*AddPermissionResponse) Descriptor deprecated

func (*AddPermissionResponse) Descriptor() ([]byte, []int)

Deprecated: Use AddPermissionResponse.ProtoReflect.Descriptor instead.

func (*AddPermissionResponse) GetCode

func (x *AddPermissionResponse) GetCode() uint32

func (*AddPermissionResponse) GetMessage

func (x *AddPermissionResponse) GetMessage() string

func (*AddPermissionResponse) ProtoMessage

func (*AddPermissionResponse) ProtoMessage()

func (*AddPermissionResponse) ProtoReflect

func (x *AddPermissionResponse) ProtoReflect() protoreflect.Message

func (*AddPermissionResponse) Reset

func (x *AddPermissionResponse) Reset()

func (*AddPermissionResponse) String

func (x *AddPermissionResponse) String() string

type AddRolePermissionRequest

type AddRolePermissionRequest struct {
	Role       string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	Permission string `protobuf:"bytes,2,opt,name=permission,proto3" json:"permission,omitempty"`
	// contains filtered or unexported fields
}

func (*AddRolePermissionRequest) Descriptor deprecated

func (*AddRolePermissionRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddRolePermissionRequest.ProtoReflect.Descriptor instead.

func (*AddRolePermissionRequest) GetPermission

func (x *AddRolePermissionRequest) GetPermission() string

func (*AddRolePermissionRequest) GetRole

func (x *AddRolePermissionRequest) GetRole() string

func (*AddRolePermissionRequest) ProtoMessage

func (*AddRolePermissionRequest) ProtoMessage()

func (*AddRolePermissionRequest) ProtoReflect

func (x *AddRolePermissionRequest) ProtoReflect() protoreflect.Message

func (*AddRolePermissionRequest) Reset

func (x *AddRolePermissionRequest) Reset()

func (*AddRolePermissionRequest) String

func (x *AddRolePermissionRequest) String() string

type AddRolePermissionResponse

type AddRolePermissionResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*AddRolePermissionResponse) Descriptor deprecated

func (*AddRolePermissionResponse) Descriptor() ([]byte, []int)

Deprecated: Use AddRolePermissionResponse.ProtoReflect.Descriptor instead.

func (*AddRolePermissionResponse) GetCode

func (x *AddRolePermissionResponse) GetCode() uint32

func (*AddRolePermissionResponse) GetMessage

func (x *AddRolePermissionResponse) GetMessage() string

func (*AddRolePermissionResponse) ProtoMessage

func (*AddRolePermissionResponse) ProtoMessage()

func (*AddRolePermissionResponse) ProtoReflect

func (*AddRolePermissionResponse) Reset

func (x *AddRolePermissionResponse) Reset()

func (*AddRolePermissionResponse) String

func (x *AddRolePermissionResponse) String() string

type AddRoleRequest

type AddRoleRequest struct {
	Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	// contains filtered or unexported fields
}

func (*AddRoleRequest) Descriptor deprecated

func (*AddRoleRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddRoleRequest.ProtoReflect.Descriptor instead.

func (*AddRoleRequest) GetRole

func (x *AddRoleRequest) GetRole() string

func (*AddRoleRequest) ProtoMessage

func (*AddRoleRequest) ProtoMessage()

func (*AddRoleRequest) ProtoReflect

func (x *AddRoleRequest) ProtoReflect() protoreflect.Message

func (*AddRoleRequest) Reset

func (x *AddRoleRequest) Reset()

func (*AddRoleRequest) String

func (x *AddRoleRequest) String() string

type AddRoleResponse

type AddRoleResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*AddRoleResponse) Descriptor deprecated

func (*AddRoleResponse) Descriptor() ([]byte, []int)

Deprecated: Use AddRoleResponse.ProtoReflect.Descriptor instead.

func (*AddRoleResponse) GetCode

func (x *AddRoleResponse) GetCode() uint32

func (*AddRoleResponse) GetMessage

func (x *AddRoleResponse) GetMessage() string

func (*AddRoleResponse) ProtoMessage

func (*AddRoleResponse) ProtoMessage()

func (*AddRoleResponse) ProtoReflect

func (x *AddRoleResponse) ProtoReflect() protoreflect.Message

func (*AddRoleResponse) Reset

func (x *AddRoleResponse) Reset()

func (*AddRoleResponse) String

func (x *AddRoleResponse) String() string

type AuthServiceClient

AuthServiceClient is the client API for AuthService 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 AuthServiceServer

AuthServiceServer is the server API for AuthService service. All implementations must embed UnimplementedAuthServiceServer for forward compatibility.

type CloseSessionsRequest

type CloseSessionsRequest struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*CloseSessionsRequest) Descriptor deprecated

func (*CloseSessionsRequest) Descriptor() ([]byte, []int)

Deprecated: Use CloseSessionsRequest.ProtoReflect.Descriptor instead.

func (*CloseSessionsRequest) GetEmail

func (x *CloseSessionsRequest) GetEmail() string

func (*CloseSessionsRequest) ProtoMessage

func (*CloseSessionsRequest) ProtoMessage()

func (*CloseSessionsRequest) ProtoReflect

func (x *CloseSessionsRequest) ProtoReflect() protoreflect.Message

func (*CloseSessionsRequest) Reset

func (x *CloseSessionsRequest) Reset()

func (*CloseSessionsRequest) String

func (x *CloseSessionsRequest) String() string

type CloseSessionsResponse

type CloseSessionsResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*CloseSessionsResponse) Descriptor deprecated

func (*CloseSessionsResponse) Descriptor() ([]byte, []int)

Deprecated: Use CloseSessionsResponse.ProtoReflect.Descriptor instead.

func (*CloseSessionsResponse) GetCode

func (x *CloseSessionsResponse) GetCode() uint32

func (*CloseSessionsResponse) GetMessage

func (x *CloseSessionsResponse) GetMessage() string

func (*CloseSessionsResponse) ProtoMessage

func (*CloseSessionsResponse) ProtoMessage()

func (*CloseSessionsResponse) ProtoReflect

func (x *CloseSessionsResponse) ProtoReflect() protoreflect.Message

func (*CloseSessionsResponse) Reset

func (x *CloseSessionsResponse) Reset()

func (*CloseSessionsResponse) String

func (x *CloseSessionsResponse) String() string

type LogInRequest

type LogInRequest struct {
	Email          string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	HashedPassword string `protobuf:"bytes,2,opt,name=hashed_password,json=hashedPassword,proto3" json:"hashed_password,omitempty"`
	// contains filtered or unexported fields
}

func (*LogInRequest) Descriptor deprecated

func (*LogInRequest) Descriptor() ([]byte, []int)

Deprecated: Use LogInRequest.ProtoReflect.Descriptor instead.

func (*LogInRequest) GetEmail

func (x *LogInRequest) GetEmail() string

func (*LogInRequest) GetHashedPassword

func (x *LogInRequest) GetHashedPassword() string

func (*LogInRequest) ProtoMessage

func (*LogInRequest) ProtoMessage()

func (*LogInRequest) ProtoReflect

func (x *LogInRequest) ProtoReflect() protoreflect.Message

func (*LogInRequest) Reset

func (x *LogInRequest) Reset()

func (*LogInRequest) String

func (x *LogInRequest) String() string

type LogInResponse

type LogInResponse struct {
	Code         uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message      string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	AccessToken  string `protobuf:"bytes,3,opt,name=access_token,json=accessToken,proto3" json:"access_token,omitempty"`
	RefreshToken string `protobuf:"bytes,4,opt,name=refresh_token,json=refreshToken,proto3" json:"refresh_token,omitempty"`
	// contains filtered or unexported fields
}

func (*LogInResponse) Descriptor deprecated

func (*LogInResponse) Descriptor() ([]byte, []int)

Deprecated: Use LogInResponse.ProtoReflect.Descriptor instead.

func (*LogInResponse) GetAccessToken

func (x *LogInResponse) GetAccessToken() string

func (*LogInResponse) GetCode

func (x *LogInResponse) GetCode() uint32

func (*LogInResponse) GetMessage

func (x *LogInResponse) GetMessage() string

func (*LogInResponse) GetRefreshToken

func (x *LogInResponse) GetRefreshToken() string

func (*LogInResponse) ProtoMessage

func (*LogInResponse) ProtoMessage()

func (*LogInResponse) ProtoReflect

func (x *LogInResponse) ProtoReflect() protoreflect.Message

func (*LogInResponse) Reset

func (x *LogInResponse) Reset()

func (*LogInResponse) String

func (x *LogInResponse) String() string

type LogOutRequest

type LogOutRequest struct {
	RefreshToken string `protobuf:"bytes,1,opt,name=refresh_token,json=refreshToken,proto3" json:"refresh_token,omitempty"`
	// contains filtered or unexported fields
}

func (*LogOutRequest) Descriptor deprecated

func (*LogOutRequest) Descriptor() ([]byte, []int)

Deprecated: Use LogOutRequest.ProtoReflect.Descriptor instead.

func (*LogOutRequest) GetRefreshToken

func (x *LogOutRequest) GetRefreshToken() string

func (*LogOutRequest) ProtoMessage

func (*LogOutRequest) ProtoMessage()

func (*LogOutRequest) ProtoReflect

func (x *LogOutRequest) ProtoReflect() protoreflect.Message

func (*LogOutRequest) Reset

func (x *LogOutRequest) Reset()

func (*LogOutRequest) String

func (x *LogOutRequest) String() string

type LogOutResponse

type LogOutResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*LogOutResponse) Descriptor deprecated

func (*LogOutResponse) Descriptor() ([]byte, []int)

Deprecated: Use LogOutResponse.ProtoReflect.Descriptor instead.

func (*LogOutResponse) GetCode

func (x *LogOutResponse) GetCode() uint32

func (*LogOutResponse) GetMessage

func (x *LogOutResponse) GetMessage() string

func (*LogOutResponse) ProtoMessage

func (*LogOutResponse) ProtoMessage()

func (*LogOutResponse) ProtoReflect

func (x *LogOutResponse) ProtoReflect() protoreflect.Message

func (*LogOutResponse) Reset

func (x *LogOutResponse) Reset()

func (*LogOutResponse) String

func (x *LogOutResponse) String() string

type RefreshTokenRequest

type RefreshTokenRequest struct {
	RefreshToken string `protobuf:"bytes,1,opt,name=refreshToken,proto3" json:"refreshToken,omitempty"`
	// contains filtered or unexported fields
}

func (*RefreshTokenRequest) Descriptor deprecated

func (*RefreshTokenRequest) Descriptor() ([]byte, []int)

Deprecated: Use RefreshTokenRequest.ProtoReflect.Descriptor instead.

func (*RefreshTokenRequest) GetRefreshToken

func (x *RefreshTokenRequest) GetRefreshToken() string

func (*RefreshTokenRequest) ProtoMessage

func (*RefreshTokenRequest) ProtoMessage()

func (*RefreshTokenRequest) ProtoReflect

func (x *RefreshTokenRequest) ProtoReflect() protoreflect.Message

func (*RefreshTokenRequest) Reset

func (x *RefreshTokenRequest) Reset()

func (*RefreshTokenRequest) String

func (x *RefreshTokenRequest) String() string

type RefreshTokenResponse

type RefreshTokenResponse struct {
	Code         uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message      string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	AccessToken  string `protobuf:"bytes,3,opt,name=access_token,json=accessToken,proto3" json:"access_token,omitempty"`
	RefreshToken string `protobuf:"bytes,4,opt,name=refresh_token,json=refreshToken,proto3" json:"refresh_token,omitempty"`
	// contains filtered or unexported fields
}

func (*RefreshTokenResponse) Descriptor deprecated

func (*RefreshTokenResponse) Descriptor() ([]byte, []int)

Deprecated: Use RefreshTokenResponse.ProtoReflect.Descriptor instead.

func (*RefreshTokenResponse) GetAccessToken

func (x *RefreshTokenResponse) GetAccessToken() string

func (*RefreshTokenResponse) GetCode

func (x *RefreshTokenResponse) GetCode() uint32

func (*RefreshTokenResponse) GetMessage

func (x *RefreshTokenResponse) GetMessage() string

func (*RefreshTokenResponse) GetRefreshToken

func (x *RefreshTokenResponse) GetRefreshToken() string

func (*RefreshTokenResponse) ProtoMessage

func (*RefreshTokenResponse) ProtoMessage()

func (*RefreshTokenResponse) ProtoReflect

func (x *RefreshTokenResponse) ProtoReflect() protoreflect.Message

func (*RefreshTokenResponse) Reset

func (x *RefreshTokenResponse) Reset()

func (*RefreshTokenResponse) String

func (x *RefreshTokenResponse) String() string

type RevokePermissionRequest

type RevokePermissionRequest struct {
	Permission string `protobuf:"bytes,1,opt,name=permission,proto3" json:"permission,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokePermissionRequest) Descriptor deprecated

func (*RevokePermissionRequest) Descriptor() ([]byte, []int)

Deprecated: Use RevokePermissionRequest.ProtoReflect.Descriptor instead.

func (*RevokePermissionRequest) GetPermission

func (x *RevokePermissionRequest) GetPermission() string

func (*RevokePermissionRequest) ProtoMessage

func (*RevokePermissionRequest) ProtoMessage()

func (*RevokePermissionRequest) ProtoReflect

func (x *RevokePermissionRequest) ProtoReflect() protoreflect.Message

func (*RevokePermissionRequest) Reset

func (x *RevokePermissionRequest) Reset()

func (*RevokePermissionRequest) String

func (x *RevokePermissionRequest) String() string

type RevokePermissionResponse

type RevokePermissionResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokePermissionResponse) Descriptor deprecated

func (*RevokePermissionResponse) Descriptor() ([]byte, []int)

Deprecated: Use RevokePermissionResponse.ProtoReflect.Descriptor instead.

func (*RevokePermissionResponse) GetCode

func (x *RevokePermissionResponse) GetCode() uint32

func (*RevokePermissionResponse) GetMessage

func (x *RevokePermissionResponse) GetMessage() string

func (*RevokePermissionResponse) ProtoMessage

func (*RevokePermissionResponse) ProtoMessage()

func (*RevokePermissionResponse) ProtoReflect

func (x *RevokePermissionResponse) ProtoReflect() protoreflect.Message

func (*RevokePermissionResponse) Reset

func (x *RevokePermissionResponse) Reset()

func (*RevokePermissionResponse) String

func (x *RevokePermissionResponse) String() string

type RevokeRolePermissionRequest

type RevokeRolePermissionRequest struct {
	Role       string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	Permission string `protobuf:"bytes,2,opt,name=permission,proto3" json:"permission,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeRolePermissionRequest) Descriptor deprecated

func (*RevokeRolePermissionRequest) Descriptor() ([]byte, []int)

Deprecated: Use RevokeRolePermissionRequest.ProtoReflect.Descriptor instead.

func (*RevokeRolePermissionRequest) GetPermission

func (x *RevokeRolePermissionRequest) GetPermission() string

func (*RevokeRolePermissionRequest) GetRole

func (x *RevokeRolePermissionRequest) GetRole() string

func (*RevokeRolePermissionRequest) ProtoMessage

func (*RevokeRolePermissionRequest) ProtoMessage()

func (*RevokeRolePermissionRequest) ProtoReflect

func (*RevokeRolePermissionRequest) Reset

func (x *RevokeRolePermissionRequest) Reset()

func (*RevokeRolePermissionRequest) String

func (x *RevokeRolePermissionRequest) String() string

type RevokeRolePermissionResponse

type RevokeRolePermissionResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeRolePermissionResponse) Descriptor deprecated

func (*RevokeRolePermissionResponse) Descriptor() ([]byte, []int)

Deprecated: Use RevokeRolePermissionResponse.ProtoReflect.Descriptor instead.

func (*RevokeRolePermissionResponse) GetCode

func (x *RevokeRolePermissionResponse) GetCode() uint32

func (*RevokeRolePermissionResponse) GetMessage

func (x *RevokeRolePermissionResponse) GetMessage() string

func (*RevokeRolePermissionResponse) ProtoMessage

func (*RevokeRolePermissionResponse) ProtoMessage()

func (*RevokeRolePermissionResponse) ProtoReflect

func (*RevokeRolePermissionResponse) Reset

func (x *RevokeRolePermissionResponse) Reset()

func (*RevokeRolePermissionResponse) String

type RevokeRoleRequest

type RevokeRoleRequest struct {
	Role string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeRoleRequest) Descriptor deprecated

func (*RevokeRoleRequest) Descriptor() ([]byte, []int)

Deprecated: Use RevokeRoleRequest.ProtoReflect.Descriptor instead.

func (*RevokeRoleRequest) GetRole

func (x *RevokeRoleRequest) GetRole() string

func (*RevokeRoleRequest) ProtoMessage

func (*RevokeRoleRequest) ProtoMessage()

func (*RevokeRoleRequest) ProtoReflect

func (x *RevokeRoleRequest) ProtoReflect() protoreflect.Message

func (*RevokeRoleRequest) Reset

func (x *RevokeRoleRequest) Reset()

func (*RevokeRoleRequest) String

func (x *RevokeRoleRequest) String() string

type RevokeRoleResponse

type RevokeRoleResponse struct {
	Code    uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*RevokeRoleResponse) Descriptor deprecated

func (*RevokeRoleResponse) Descriptor() ([]byte, []int)

Deprecated: Use RevokeRoleResponse.ProtoReflect.Descriptor instead.

func (*RevokeRoleResponse) GetCode

func (x *RevokeRoleResponse) GetCode() uint32

func (*RevokeRoleResponse) GetMessage

func (x *RevokeRoleResponse) GetMessage() string

func (*RevokeRoleResponse) ProtoMessage

func (*RevokeRoleResponse) ProtoMessage()

func (*RevokeRoleResponse) ProtoReflect

func (x *RevokeRoleResponse) ProtoReflect() protoreflect.Message

func (*RevokeRoleResponse) Reset

func (x *RevokeRoleResponse) Reset()

func (*RevokeRoleResponse) String

func (x *RevokeRoleResponse) String() string

type UnimplementedAuthServiceServer

type UnimplementedAuthServiceServer struct{}

UnimplementedAuthServiceServer 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.

func (UnimplementedAuthServiceServer) AddPermission

func (UnimplementedAuthServiceServer) AddRole

func (UnimplementedAuthServiceServer) AddRolePermission

func (UnimplementedAuthServiceServer) CloseSessions

func (UnimplementedAuthServiceServer) LogIn

func (UnimplementedAuthServiceServer) LogOut

func (UnimplementedAuthServiceServer) RefreshToken

func (UnimplementedAuthServiceServer) RevokePermission

func (UnimplementedAuthServiceServer) RevokeRole

type UnsafeAuthServiceServer

type UnsafeAuthServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeAuthServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to AuthServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL