Package org.apache.tika
Interface SaveFetcherRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SaveFetcherRequest,SaveFetcherRequest.Builder
public interface SaveFetcherRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionThe full java class name of the fetcher class.com.google.protobuf.ByteStringThe full java class name of the fetcher class.JSON string of the fetcher config object.com.google.protobuf.ByteStringJSON string of the fetcher config object.A unique identifier for each fetcher.com.google.protobuf.ByteStringA unique identifier for each fetcher.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getFetcherId
String getFetcherId()A unique identifier for each fetcher. If this already exists, operation will overwrite existing.
string fetcher_id = 1;- Returns:
- The fetcherId.
-
getFetcherIdBytes
com.google.protobuf.ByteString getFetcherIdBytes()A unique identifier for each fetcher. If this already exists, operation will overwrite existing.
string fetcher_id = 1;- Returns:
- The bytes for fetcherId.
-
getFetcherClass
String getFetcherClass()The full java class name of the fetcher class. List of fetcher classes is found here: https://cwiki.apache.org/confluence/display/TIKA/tika-pipes
string fetcher_class = 2;- Returns:
- The fetcherClass.
-
getFetcherClassBytes
com.google.protobuf.ByteString getFetcherClassBytes()The full java class name of the fetcher class. List of fetcher classes is found here: https://cwiki.apache.org/confluence/display/TIKA/tika-pipes
string fetcher_class = 2;- Returns:
- The bytes for fetcherClass.
-
getFetcherConfigJson
String getFetcherConfigJson()JSON string of the fetcher config object. To see the json schema from which to build this json, use the GetFetcherConfigJsonSchema rpc method.
string fetcher_config_json = 3;- Returns:
- The fetcherConfigJson.
-
getFetcherConfigJsonBytes
com.google.protobuf.ByteString getFetcherConfigJsonBytes()JSON string of the fetcher config object. To see the json schema from which to build this json, use the GetFetcherConfigJsonSchema rpc method.
string fetcher_config_json = 3;- Returns:
- The bytes for fetcherConfigJson.
-