File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
sdks/java/io/pulsar/src/main/java/org/apache/beam/sdk/io/pulsar Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 3131@ DefaultSchema (AutoValueSchema .class )
3232@ AutoValue
3333public abstract class PulsarMessage {
34- abstract @ Nullable String getTopic ();
34+ public abstract @ Nullable String getTopic ();
3535
36- abstract long getPublishTimestamp ();
36+ public abstract long getPublishTimestamp ();
3737
38- abstract @ Nullable String getKey ();
38+ public abstract @ Nullable String getKey ();
3939
4040 @ SuppressWarnings ("mutable" )
41- abstract byte [] getValue ();
41+ public abstract byte [] getValue ();
4242
43- abstract @ Nullable Map <String , String > getProperties ();
43+ public abstract @ Nullable Map <String , String > getProperties ();
4444
4545 @ SuppressWarnings ("mutable" )
46- abstract byte [] getMessageId ();
46+ public abstract byte [] getMessageId ();
4747
4848 public static PulsarMessage create (
4949 @ Nullable String topicName ,
You can’t perform that action at this time.
0 commit comments