Interface FetchAndParseRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getAdditionalFetchConfigJson()
      You can supply additional fetch configuration using this.
      com.google.protobuf.ByteString getAdditionalFetchConfigJsonBytes()
      You can supply additional fetch configuration using this.
      String getFetcherId()
      The ID of the fetcher in the fetcher store (previously saved by SaveFetcher) to use for the fetch.
      com.google.protobuf.ByteString getFetcherIdBytes()
      The ID of the fetcher in the fetcher store (previously saved by SaveFetcher) to use for the fetch.
      String getFetchKey()
      The "Fetch Key" of the item that will be fetched.
      com.google.protobuf.ByteString getFetchKeyBytes()
      The "Fetch Key" of the item that will be fetched.
      • 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 Detail

      • getFetcherId

        String getFetcherId()
         The ID of the fetcher in the fetcher store (previously saved by SaveFetcher) to use for the fetch.
         
        string fetcher_id = 1;
        Returns:
        The fetcherId.
      • getFetcherIdBytes

        com.google.protobuf.ByteString getFetcherIdBytes()
         The ID of the fetcher in the fetcher store (previously saved by SaveFetcher) to use for the fetch.
         
        string fetcher_id = 1;
        Returns:
        The bytes for fetcherId.
      • getFetchKey

        String getFetchKey()
         The "Fetch Key" of the item that will be fetched.
         
        string fetch_key = 2;
        Returns:
        The fetchKey.
      • getFetchKeyBytes

        com.google.protobuf.ByteString getFetchKeyBytes()
         The "Fetch Key" of the item that will be fetched.
         
        string fetch_key = 2;
        Returns:
        The bytes for fetchKey.
      • getAdditionalFetchConfigJson

        String getAdditionalFetchConfigJson()
         You can supply additional fetch configuration using this. Follows same fetch configuration json schema
         as the fetcher configuration.
         
        string additional_fetch_config_json = 3;
        Returns:
        The additionalFetchConfigJson.
      • getAdditionalFetchConfigJsonBytes

        com.google.protobuf.ByteString getAdditionalFetchConfigJsonBytes()
         You can supply additional fetch configuration using this. Follows same fetch configuration json schema
         as the fetcher configuration.
         
        string additional_fetch_config_json = 3;
        Returns:
        The bytes for additionalFetchConfigJson.