Interface CrawledUrlOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getBody()
      The body of the request that was used to visit the URL.
      com.google.protobuf.ByteString getBodyBytes()
      The body of the request that was used to visit the URL.
      String getHttpMethod()
      The http method of the request that was used to visit the URL, in uppercase.
      com.google.protobuf.ByteString getHttpMethodBytes()
      The http method of the request that was used to visit the URL, in uppercase.
      String getUrl()
      The URL that was crawled.
      com.google.protobuf.ByteString getUrlBytes()
      The URL that was crawled.
      • 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

      • getHttpMethod

        String getHttpMethod()
         The http method of the request that was used to visit the URL, in
         uppercase.
         
        string http_method = 1;
        Returns:
        The httpMethod.
      • getHttpMethodBytes

        com.google.protobuf.ByteString getHttpMethodBytes()
         The http method of the request that was used to visit the URL, in
         uppercase.
         
        string http_method = 1;
        Returns:
        The bytes for httpMethod.
      • getUrl

        String getUrl()
         The URL that was crawled.
         
        string url = 2;
        Returns:
        The url.
      • getUrlBytes

        com.google.protobuf.ByteString getUrlBytes()
         The URL that was crawled.
         
        string url = 2;
        Returns:
        The bytes for url.
      • getBody

        String getBody()
         The body of the request that was used to visit the URL.
         
        string body = 3;
        Returns:
        The body.
      • getBodyBytes

        com.google.protobuf.ByteString getBodyBytes()
         The body of the request that was used to visit the URL.
         
        string body = 3;
        Returns:
        The bytes for body.