mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## 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`.
34 lines
923 B
Go
34 lines
923 B
Go
// Code generated by protoc-gen-go-helpers. DO NOT EDIT.
|
|
package enums
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
PredicateType_shorthandValue = map[string]int32{
|
|
"Unspecified": 0,
|
|
"Universal": 1,
|
|
"Empty": 2,
|
|
"And": 3,
|
|
"Or": 4,
|
|
"Not": 5,
|
|
"NamespaceId": 6,
|
|
"TaskType": 7,
|
|
"Destination": 8,
|
|
"OutboundTaskGroup": 9,
|
|
"OutboundTask": 10,
|
|
}
|
|
)
|
|
|
|
// PredicateTypeFromString parses a PredicateType value from either the protojson
|
|
// canonical SCREAMING_CASE enum or the traditional temporal PascalCase enum to PredicateType
|
|
func PredicateTypeFromString(s string) (PredicateType, error) {
|
|
if v, ok := PredicateType_value[s]; ok {
|
|
return PredicateType(v), nil
|
|
} else if v, ok := PredicateType_shorthandValue[s]; ok {
|
|
return PredicateType(v), nil
|
|
}
|
|
return PredicateType(0), fmt.Errorf("%s is not a valid PredicateType", s)
|
|
}
|