interfaces.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. Copyright 2018 The Knative Authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package apis
  14. import (
  15. "k8s.io/apimachinery/pkg/runtime"
  16. )
  17. // Defaultable defines an interface for setting the defaults for the
  18. // uninitialized fields of this instance.
  19. type Defaultable interface {
  20. SetDefaults()
  21. }
  22. // Validatable indicates that a particular type may have its fields validated.
  23. type Validatable interface {
  24. // Validate checks the validity of this types fields.
  25. Validate() *FieldError
  26. }
  27. // Immutable indicates that a particular type has fields that should
  28. // not change after creation.
  29. type Immutable interface {
  30. // CheckImmutableFields checks that the current instance's immutable
  31. // fields haven't changed from the provided original.
  32. CheckImmutableFields(original Immutable) *FieldError
  33. }
  34. // Listable indicates that a particular type can be returned via the returned
  35. // list type by the API server.
  36. type Listable interface {
  37. runtime.Object
  38. GetListType() runtime.Object
  39. }