Package com.google.appengine.v1
Interface UrlDispatchRuleOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UrlDispatchRule
,UrlDispatchRule.Builder
public interface UrlDispatchRuleOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDomain()
Domain name to match against.com.google.protobuf.ByteString
getDomainBytes()
Domain name to match against.String
getPath()
Pathname within the host.com.google.protobuf.ByteString
getPathBytes()
Pathname within the host.String
getService()
Resource ID of a service in this application that should serve the matched request.com.google.protobuf.ByteString
getServiceBytes()
Resource ID of a service in this application that should serve the matched request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDomain
String getDomain()
Domain name to match against. The wildcard "`*`" is supported if specified before a period: "`*.`". Defaults to matching all domains: "`*`".
string domain = 1;
- Returns:
- The domain.
-
getDomainBytes
com.google.protobuf.ByteString getDomainBytes()
Domain name to match against. The wildcard "`*`" is supported if specified before a period: "`*.`". Defaults to matching all domains: "`*`".
string domain = 1;
- Returns:
- The bytes for domain.
-
getPath
String getPath()
Pathname within the host. Must start with a "`/`". A single "`*`" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.
string path = 2;
- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
Pathname within the host. Must start with a "`/`". A single "`*`" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.
string path = 2;
- Returns:
- The bytes for path.
-
getService
String getService()
Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: `default`.
string service = 3;
- Returns:
- The service.
-
getServiceBytes
com.google.protobuf.ByteString getServiceBytes()
Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: `default`.
string service = 3;
- Returns:
- The bytes for service.
-
-