forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.validator.pb.go
79 lines (75 loc) · 2.28 KB
/
update.validator.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: update.proto
package update
import github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import _ "github.com/pydio/cells/common/proto/tree"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
func (this *Package) Validate() error {
return nil
}
func (this *ApplyUpdateRequest) Validate() error {
return nil
}
func (this *ApplyUpdateResponse) Validate() error {
return nil
}
func (this *UpdateRequest) Validate() error {
// Validation of proto3 map<> fields is unsupported.
return nil
}
func (this *UpdateResponse) Validate() error {
for _, item := range this.AvailableBinaries {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("AvailableBinaries", err)
}
}
}
return nil
}
func (this *PublishPackageRequest) Validate() error {
if this.Package != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Package); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Package", err)
}
}
if this.Node != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Node); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Node", err)
}
}
return nil
}
func (this *PublishPackageResponse) Validate() error {
if this.Package != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Package); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Package", err)
}
}
return nil
}
func (this *ListPackagesRequest) Validate() error {
return nil
}
func (this *ListPackagesResponse) Validate() error {
for _, item := range this.Packages {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Packages", err)
}
}
}
return nil
}
func (this *DeletePackageRequest) Validate() error {
return nil
}
func (this *DeletePackageResponse) Validate() error {
return nil
}