Package com.google.appengine.v1
Interface AuthorizedDomainOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AuthorizedDomain,AuthorizedDomain.Builder
public interface AuthorizedDomainOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Fully qualified domain name of the domain authorized for use.com.google.protobuf.ByteStringgetIdBytes()Fully qualified domain name of the domain authorized for use.StringgetName()Full path to the `AuthorizedDomain` resource in the API.com.google.protobuf.ByteStringgetNameBytes()Full path to the `AuthorizedDomain` resource in the API.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Full path to the `AuthorizedDomain` resource in the API. Example: `apps/myapp/authorizedDomains/example.com`. @OutputOnly
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Full path to the `AuthorizedDomain` resource in the API. Example: `apps/myapp/authorizedDomains/example.com`. @OutputOnly
string name = 1;- Returns:
- The bytes for name.
-
getId
String getId()
Fully qualified domain name of the domain authorized for use. Example: `example.com`.
string id = 2;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Fully qualified domain name of the domain authorized for use. Example: `example.com`.
string id = 2;- Returns:
- The bytes for id.
-
-