123456789101112 |
- package java
- const wrapperConstTpl = `{{ $f := .Field }}{{ $r := .Rules }}
- {{- renderConstants (unwrap .) }}`
- const wrapperTpl = `{{ $f := .Field }}{{ $r := .Rules }}
- if ({{ hasAccessor . }}) {
- {{- render (unwrap .) }}
- }
- {{ if .MessageRules.GetRequired }} else {
- throw new io.envoyproxy.pgv.ValidationException("{{ $f }}", "null", "is required");
- } {{ end }}`
|