com.salesforce.eventbus.protobuf.TopicInfoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: pubsub_api.proto
package com.salesforce.eventbus.protobuf;
public interface TopicInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:eventbus.v1.TopicInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* Topic name
*
*
* string topic_name = 1;
* @return The topicName.
*/
java.lang.String getTopicName();
/**
*
* Topic name
*
*
* string topic_name = 1;
* @return The bytes for topicName.
*/
com.google.protobuf.ByteString
getTopicNameBytes();
/**
*
* Tenant/org GUID
*
*
* string tenant_guid = 2;
* @return The tenantGuid.
*/
java.lang.String getTenantGuid();
/**
*
* Tenant/org GUID
*
*
* string tenant_guid = 2;
* @return The bytes for tenantGuid.
*/
com.google.protobuf.ByteString
getTenantGuidBytes();
/**
*
* Is publishing allowed?
*
*
* bool can_publish = 3;
* @return The canPublish.
*/
boolean getCanPublish();
/**
*
* Is subscription allowed?
*
*
* bool can_subscribe = 4;
* @return The canSubscribe.
*/
boolean getCanSubscribe();
/**
*
* ID of the current topic schema, which can be used for
* publishing of generically serialized events.
*
*
* string schema_id = 5;
* @return The schemaId.
*/
java.lang.String getSchemaId();
/**
*
* ID of the current topic schema, which can be used for
* publishing of generically serialized events.
*
*
* string schema_id = 5;
* @return The bytes for schemaId.
*/
com.google.protobuf.ByteString
getSchemaIdBytes();
/**
*
* RPC ID used to trace errors.
*
*
* string rpc_id = 6;
* @return The rpcId.
*/
java.lang.String getRpcId();
/**
*
* RPC ID used to trace errors.
*
*
* string rpc_id = 6;
* @return The bytes for rpcId.
*/
com.google.protobuf.ByteString
getRpcIdBytes();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy