Interface TopicInfoOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
TopicInfo, TopicInfo.Builder

public interface TopicInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Is publishing allowed?
    boolean
    Is subscription allowed?
    RPC ID used to trace errors.
    com.google.protobuf.ByteString
    RPC ID used to trace errors.
    ID of the current topic schema, which can be used for publishing of generically serialized events.
    com.google.protobuf.ByteString
    ID of the current topic schema, which can be used for publishing of generically serialized events.
    Tenant/org GUID
    com.google.protobuf.ByteString
    Tenant/org GUID
    Topic name
    com.google.protobuf.ByteString
    Topic name

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getTopicName

      String getTopicName()
       Topic name
       
      string topic_name = 1;
      Returns:
      The topicName.
    • getTopicNameBytes

      com.google.protobuf.ByteString getTopicNameBytes()
       Topic name
       
      string topic_name = 1;
      Returns:
      The bytes for topicName.
    • getTenantGuid

      String getTenantGuid()
       Tenant/org GUID
       
      string tenant_guid = 2;
      Returns:
      The tenantGuid.
    • getTenantGuidBytes

      com.google.protobuf.ByteString getTenantGuidBytes()
       Tenant/org GUID
       
      string tenant_guid = 2;
      Returns:
      The bytes for tenantGuid.
    • getCanPublish

      boolean getCanPublish()
       Is publishing allowed?
       
      bool can_publish = 3;
      Returns:
      The canPublish.
    • getCanSubscribe

      boolean getCanSubscribe()
       Is subscription allowed?
       
      bool can_subscribe = 4;
      Returns:
      The canSubscribe.
    • getSchemaId

      String getSchemaId()
       ID of the current topic schema, which can be used for
       publishing of generically serialized events.
       
      string schema_id = 5;
      Returns:
      The schemaId.
    • getSchemaIdBytes

      com.google.protobuf.ByteString getSchemaIdBytes()
       ID of the current topic schema, which can be used for
       publishing of generically serialized events.
       
      string schema_id = 5;
      Returns:
      The bytes for schemaId.
    • getRpcId

      String getRpcId()
       RPC ID used to trace errors.
       
      string rpc_id = 6;
      Returns:
      The rpcId.
    • getRpcIdBytes

      com.google.protobuf.ByteString getRpcIdBytes()
       RPC ID used to trace errors.
       
      string rpc_id = 6;
      Returns:
      The bytes for rpcId.