Interface EventOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder
    All Known Implementing Classes:
    Event, Event.Builder

    public interface EventOrBuilder
    extends com.google.protobuf.MessageLiteOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getDatasource()
      datasource
      com.google.protobuf.ByteString getDatasourceBytes()
      datasource
      java.lang.String getId()
      unique raw event identifier from datasource
      com.google.protobuf.ByteString getIdBytes()
      unique raw event identifier from datasource
      java.lang.String getName()
      event name
      com.google.protobuf.ByteString getNameBytes()
      event name
      java.lang.String getScope()
      scope of event
      com.google.protobuf.ByteString getScopeBytes()
      scope of event
      java.lang.String getScopeId()
      unique scope identifier, e.g.
      com.google.protobuf.ByteString getScopeIdBytes()
      unique scope identifier, e.g.
      long getTimestamp()
      timestamp, unixtime millis
      java.lang.String getValue()
      event value
      com.google.protobuf.ByteString getValueBytes()
      event value
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        getDefaultInstanceForType, isInitialized
    • Method Detail

      • getId

        java.lang.String getId()
         unique raw event identifier from datasource
         
        string id = 1 [json_name = "id"];
        Returns:
        The id.
      • getIdBytes

        com.google.protobuf.ByteString getIdBytes()
         unique raw event identifier from datasource
         
        string id = 1 [json_name = "id"];
        Returns:
        The bytes for id.
      • getDatasource

        java.lang.String getDatasource()
         datasource
         
        string datasource = 2 [json_name = "datasource"];
        Returns:
        The datasource.
      • getDatasourceBytes

        com.google.protobuf.ByteString getDatasourceBytes()
         datasource
         
        string datasource = 2 [json_name = "datasource"];
        Returns:
        The bytes for datasource.
      • getScope

        java.lang.String getScope()
         scope of event
         
        string scope = 3 [json_name = "scope"];
        Returns:
        The scope.
      • getScopeBytes

        com.google.protobuf.ByteString getScopeBytes()
         scope of event
         
        string scope = 3 [json_name = "scope"];
        Returns:
        The bytes for scope.
      • getScopeId

        java.lang.String getScopeId()
         unique scope identifier, e.g. d8539eb6-3e27-40c8-906f-9cd1736321d8, adapter takes it from datasource raw data
         
        string scope_id = 4 [json_name = "scopeId"];
        Returns:
        The scopeId.
      • getScopeIdBytes

        com.google.protobuf.ByteString getScopeIdBytes()
         unique scope identifier, e.g. d8539eb6-3e27-40c8-906f-9cd1736321d8, adapter takes it from datasource raw data
         
        string scope_id = 4 [json_name = "scopeId"];
        Returns:
        The bytes for scopeId.
      • getName

        java.lang.String getName()
         event name
         
        string name = 5 [json_name = "name"];
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         event name
         
        string name = 5 [json_name = "name"];
        Returns:
        The bytes for name.
      • getValue

        java.lang.String getValue()
         event value
         
        string value = 6 [json_name = "value"];
        Returns:
        The value.
      • getValueBytes

        com.google.protobuf.ByteString getValueBytes()
         event value
         
        string value = 6 [json_name = "value"];
        Returns:
        The bytes for value.
      • getTimestamp

        long getTimestamp()
         timestamp, unixtime millis
         
        int64 timestamp = 7 [json_name = "timestamp"];
        Returns:
        The timestamp.