View Javadoc
1   // Generated by the protocol buffer compiler.  DO NOT EDIT!
2   // source: sample.proto
3   
4   package org.springframework.protobuf;
5   
6   public interface MsgOrBuilder
7       extends com.google.protobuf.MessageOrBuilder {
8   
9     // optional string foo = 1;
10    /**
11     * <code>optional string foo = 1;</code>
12     */
13    boolean hasFoo();
14    /**
15     * <code>optional string foo = 1;</code>
16     */
17    java.lang.String getFoo();
18    /**
19     * <code>optional string foo = 1;</code>
20     */
21    com.google.protobuf.ByteString
22        getFooBytes();
23  
24    // optional .SecondMsg blah = 2;
25    /**
26     * <code>optional .SecondMsg blah = 2;</code>
27     */
28    boolean hasBlah();
29    /**
30     * <code>optional .SecondMsg blah = 2;</code>
31     */
32    org.springframework.protobuf.SecondMsg getBlah();
33    /**
34     * <code>optional .SecondMsg blah = 2;</code>
35     */
36    org.springframework.protobuf.SecondMsgOrBuilder getBlahOrBuilder();
37  }