main.java.com.streamlayer.common.KeyValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/common/streamlayer_common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.common;
public interface KeyValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.common.KeyValue)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string key = 1 [json_name = "key"];
* @return The key.
*/
java.lang.String getKey();
/**
* string key = 1 [json_name = "key"];
* @return The bytes for key.
*/
com.google.protobuf.ByteString
getKeyBytes();
/**
* string value = 2 [json_name = "value"];
* @return The value.
*/
java.lang.String getValue();
/**
* string value = 2 [json_name = "value"];
* @return The bytes for value.
*/
com.google.protobuf.ByteString
getValueBytes();
}