Package com.google.appengine.v1
Interface ApiConfigHandlerOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ApiConfigHandler
,ApiConfigHandler.Builder
public interface ApiConfigHandlerOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthFailAction
getAuthFailAction()
Action to take when users access resources that require authentication.int
getAuthFailActionValue()
Action to take when users access resources that require authentication.LoginRequirement
getLogin()
Level of login required to access this resource.int
getLoginValue()
Level of login required to access this resource.String
getScript()
Path to the script from the application root directory.com.google.protobuf.ByteString
getScriptBytes()
Path to the script from the application root directory.SecurityLevel
getSecurityLevel()
Security (HTTPS) enforcement for this URL.int
getSecurityLevelValue()
Security (HTTPS) enforcement for this URL.String
getUrl()
URL to serve the endpoint at.com.google.protobuf.ByteString
getUrlBytes()
URL to serve the endpoint at.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAuthFailActionValue
int getAuthFailActionValue()
Action to take when users access resources that require authentication. Defaults to `redirect`.
.google.appengine.v1.AuthFailAction auth_fail_action = 1;
- Returns:
- The enum numeric value on the wire for authFailAction.
-
getAuthFailAction
AuthFailAction getAuthFailAction()
Action to take when users access resources that require authentication. Defaults to `redirect`.
.google.appengine.v1.AuthFailAction auth_fail_action = 1;
- Returns:
- The authFailAction.
-
getLoginValue
int getLoginValue()
Level of login required to access this resource. Defaults to `optional`.
.google.appengine.v1.LoginRequirement login = 2;
- Returns:
- The enum numeric value on the wire for login.
-
getLogin
LoginRequirement getLogin()
Level of login required to access this resource. Defaults to `optional`.
.google.appengine.v1.LoginRequirement login = 2;
- Returns:
- The login.
-
getScript
String getScript()
Path to the script from the application root directory.
string script = 3;
- Returns:
- The script.
-
getScriptBytes
com.google.protobuf.ByteString getScriptBytes()
Path to the script from the application root directory.
string script = 3;
- Returns:
- The bytes for script.
-
getSecurityLevelValue
int getSecurityLevelValue()
Security (HTTPS) enforcement for this URL.
.google.appengine.v1.SecurityLevel security_level = 4;
- Returns:
- The enum numeric value on the wire for securityLevel.
-
getSecurityLevel
SecurityLevel getSecurityLevel()
Security (HTTPS) enforcement for this URL.
.google.appengine.v1.SecurityLevel security_level = 4;
- Returns:
- The securityLevel.
-
getUrl
String getUrl()
URL to serve the endpoint at.
string url = 5;
- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()
URL to serve the endpoint at.
string url = 5;
- Returns:
- The bytes for url.
-
-