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()
Output only.com.google.protobuf.ByteString
getBodyBytes()
Output only.String
getHttpMethod()
Output only.com.google.protobuf.ByteString
getHttpMethodBytes()
Output only.String
getUrl()
Output only.com.google.protobuf.ByteString
getUrlBytes()
Output only.-
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()
Output only. 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()
Output only. 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()
Output only. The URL that was crawled.
string url = 2;
- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()
Output only. The URL that was crawled.
string url = 2;
- Returns:
- The bytes for url.
-
getBody
String getBody()
Output only. The body of the request that was used to visit the URL.
string body = 3;
- Returns:
- The body.
-
getBodyBytes
com.google.protobuf.ByteString getBodyBytes()
Output only. The body of the request that was used to visit the URL.
string body = 3;
- Returns:
- The bytes for body.
-
-