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`.
92 lines
3.0 KiB
Go
92 lines
3.0 KiB
Go
// Code generated by protoc-gen-go-helpers. DO NOT EDIT.
|
|
package enums
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
TaskSource_shorthandValue = map[string]int32{
|
|
"Unspecified": 0,
|
|
"History": 1,
|
|
"DbBacklog": 2,
|
|
}
|
|
)
|
|
|
|
// TaskSourceFromString parses a TaskSource value from either the protojson
|
|
// canonical SCREAMING_CASE enum or the traditional temporal PascalCase enum to TaskSource
|
|
func TaskSourceFromString(s string) (TaskSource, error) {
|
|
if v, ok := TaskSource_value[s]; ok {
|
|
return TaskSource(v), nil
|
|
} else if v, ok := TaskSource_shorthandValue[s]; ok {
|
|
return TaskSource(v), nil
|
|
}
|
|
return TaskSource(0), fmt.Errorf("%s is not a valid TaskSource", s)
|
|
}
|
|
|
|
var (
|
|
TaskType_shorthandValue = map[string]int32{
|
|
"Unspecified": 0,
|
|
"ReplicationHistory": 1,
|
|
"ReplicationSyncActivity": 2,
|
|
"TransferWorkflowTask": 3,
|
|
"TransferActivityTask": 4,
|
|
"TransferCloseExecution": 5,
|
|
"TransferCancelExecution": 6,
|
|
"TransferStartChildExecution": 7,
|
|
"TransferSignalExecution": 8,
|
|
"TransferResetWorkflow": 10,
|
|
"WorkflowTaskTimeout": 12,
|
|
"ActivityTimeout": 13,
|
|
"UserTimer": 14,
|
|
"WorkflowRunTimeout": 15,
|
|
"DeleteHistoryEvent": 16,
|
|
"ActivityRetryTimer": 17,
|
|
"WorkflowBackoffTimer": 18,
|
|
"VisibilityStartExecution": 19,
|
|
"VisibilityUpsertExecution": 20,
|
|
"VisibilityCloseExecution": 21,
|
|
"VisibilityDeleteExecution": 22,
|
|
"TransferDeleteExecution": 24,
|
|
"ReplicationSyncWorkflowState": 25,
|
|
"ArchivalArchiveExecution": 26,
|
|
"StateMachineOutbound": 27,
|
|
"StateMachineTimer": 28,
|
|
"WorkflowExecutionTimeout": 29,
|
|
"ReplicationSyncHsm": 30,
|
|
"ReplicationSyncVersionedTransition": 31,
|
|
"ChasmPure": 32,
|
|
"Chasm": 33,
|
|
}
|
|
)
|
|
|
|
// TaskTypeFromString parses a TaskType value from either the protojson
|
|
// canonical SCREAMING_CASE enum or the traditional temporal PascalCase enum to TaskType
|
|
func TaskTypeFromString(s string) (TaskType, error) {
|
|
if v, ok := TaskType_value[s]; ok {
|
|
return TaskType(v), nil
|
|
} else if v, ok := TaskType_shorthandValue[s]; ok {
|
|
return TaskType(v), nil
|
|
}
|
|
return TaskType(0), fmt.Errorf("%s is not a valid TaskType", s)
|
|
}
|
|
|
|
var (
|
|
TaskPriority_shorthandValue = map[string]int32{
|
|
"Unspecified": 0,
|
|
"High": 1,
|
|
"Low": 10,
|
|
}
|
|
)
|
|
|
|
// TaskPriorityFromString parses a TaskPriority value from either the protojson
|
|
// canonical SCREAMING_CASE enum or the traditional temporal PascalCase enum to TaskPriority
|
|
func TaskPriorityFromString(s string) (TaskPriority, error) {
|
|
if v, ok := TaskPriority_value[s]; ok {
|
|
return TaskPriority(v), nil
|
|
} else if v, ok := TaskPriority_shorthandValue[s]; ok {
|
|
return TaskPriority(v), nil
|
|
}
|
|
return TaskPriority(0), fmt.Errorf("%s is not a valid TaskPriority", s)
|
|
}
|