Files
temporal/api/persistence/v1/update.go-helpers.pb.go
Alex Shtin 91893f1064 Remove license header from every file (#7689)
## What changed?
<!-- Describe what has changed in this PR -->
Remove license header from every file. Because it is really hard to
follow in this PR here is the summary:
1. License header is removed from all `.go` and `.proto` files
:fireworks::fireworks:🎆.
2. `LICENSE` file in the root directory has only Temporal and Uber
copyrights.
3. 5 other `LICENSE` files added to the packages which have copyrights
different from Temporal and Uber: Datadog, Xargin, "Mat Ryer, Tyler
Bunnell and contributors".
4. `license_file` flag is removed from all code generation tools.
5. `copyright_file` flag is removed from `go:generate mockgen`
directive.
6. All copyright related targets are removed from `Makefile`.
7. Updated Temporal copyright year to 2025 everywhere.

## Why?
<!-- Tell your future self why have you made these changes -->
I double checked with legal department that it is not needed to have
license header in every file. One file per repo is enough. I put all
copyrights to the root `LICENSE` file and removed header from all other
files. Also updated tools and `Makefile`.
2025-05-01 18:50:21 -07:00

155 lines
4.1 KiB
Go

// Code generated by protoc-gen-go-helpers. DO NOT EDIT.
package persistence
import (
"google.golang.org/protobuf/proto"
)
// Marshal an object of type UpdateAdmissionInfo to the protobuf v3 wire format
func (val *UpdateAdmissionInfo) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type UpdateAdmissionInfo from the protobuf v3 wire format
func (val *UpdateAdmissionInfo) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *UpdateAdmissionInfo) Size() int {
return proto.Size(val)
}
// Equal returns whether two UpdateAdmissionInfo values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *UpdateAdmissionInfo) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *UpdateAdmissionInfo
switch t := that.(type) {
case *UpdateAdmissionInfo:
that1 = t
case UpdateAdmissionInfo:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type UpdateAcceptanceInfo to the protobuf v3 wire format
func (val *UpdateAcceptanceInfo) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type UpdateAcceptanceInfo from the protobuf v3 wire format
func (val *UpdateAcceptanceInfo) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *UpdateAcceptanceInfo) Size() int {
return proto.Size(val)
}
// Equal returns whether two UpdateAcceptanceInfo values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *UpdateAcceptanceInfo) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *UpdateAcceptanceInfo
switch t := that.(type) {
case *UpdateAcceptanceInfo:
that1 = t
case UpdateAcceptanceInfo:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type UpdateCompletionInfo to the protobuf v3 wire format
func (val *UpdateCompletionInfo) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type UpdateCompletionInfo from the protobuf v3 wire format
func (val *UpdateCompletionInfo) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *UpdateCompletionInfo) Size() int {
return proto.Size(val)
}
// Equal returns whether two UpdateCompletionInfo values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *UpdateCompletionInfo) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *UpdateCompletionInfo
switch t := that.(type) {
case *UpdateCompletionInfo:
that1 = t
case UpdateCompletionInfo:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}
// Marshal an object of type UpdateInfo to the protobuf v3 wire format
func (val *UpdateInfo) Marshal() ([]byte, error) {
return proto.Marshal(val)
}
// Unmarshal an object of type UpdateInfo from the protobuf v3 wire format
func (val *UpdateInfo) Unmarshal(buf []byte) error {
return proto.Unmarshal(buf, val)
}
// Size returns the size of the object, in bytes, once serialized
func (val *UpdateInfo) Size() int {
return proto.Size(val)
}
// Equal returns whether two UpdateInfo values are equivalent by recursively
// comparing the message's fields.
// For more information see the documentation for
// https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (this *UpdateInfo) Equal(that interface{}) bool {
if that == nil {
return this == nil
}
var that1 *UpdateInfo
switch t := that.(type) {
case *UpdateInfo:
that1 = t
case UpdateInfo:
that1 = &t
default:
return false
}
return proto.Equal(this, that1)
}