java.lang.Object
com.google.javascript.jscomp.webservice.common.Protocol

public class Protocol extends Object
All the strings used by the webservice protocol.
  • Field Details

    • MAX_INPUT_SIZE_KEY

      public static final String 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_SIZE
      Fallback 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.