Class Protocol
java.lang.Object
com.google.javascript.jscomp.webservice.common.Protocol
All the strings used by the webservice protocol.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Fields in the JSON response from the ApiKeyGenerationServlet.static enum
static enum
All the possible values for the FORMATTING key.static enum
static enum
All the possible values for the OUTPUT_INFO key.static interface
All enums that need to be shared between the Java and JS code should implement this interface.static enum
All the keys that can be part of the http request.static enum
All the xml/json tags that can be returned by the backend if xml or json is selected as the output mode.static enum
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Fallback value in case no setting is provided.static final String
Properties key for getting the maximum input file size that may be compiled by the service. -
Method Summary
Modifier and TypeMethodDescriptionstatic final int
Find the maximum input size that this configuration of the web service allows.static final void
Reset the maximum input size so that the property key is rechecked.
-
Field Details
-
MAX_INPUT_SIZE_KEY
Properties key for getting the maximum input file size that may be compiled by the service. This is parameterized so we can have different values for inside and outside Google. The value should be a string representation of an integer representing the maximum input size in bytes.- See Also:
-
FALLBACK_MAX_INPUT_SIZE
public static final int FALLBACK_MAX_INPUT_SIZEFallback value in case no setting is provided.- See Also:
-
-
Method Details
-
maximumInputSize
public static final int maximumInputSize()Find the maximum input size that this configuration of the web service allows.- Returns:
- maximum input size permitted (in bytes)
-
resetMaximumInputSize
public static final void resetMaximumInputSize()Reset the maximum input size so that the property key is rechecked. This is needed for testing code because we are caching the maximum input size value.
-