| Class | Description |
|---|---|
| Main | |
| MethodGenerator |
A utility class to encapsulate the generation of HTTP methods for gRPC services.
|
| PathTemplate |
The syntax of the path template is as follows:
Template = "/" Segments [ Verb ] ;
Segments = Segment { "/" Segment } ;
Segment = "*" | "**" | LITERAL | Variable ;
Variable = "{" FieldPath [ "=" Segments ] "}" ;
FieldPath = IDENT { "." IDENT } ;
Verb = ":" LITERAL ;
|