Class Expect100ContinueFeature

  • All Implemented Interfaces:
    Feature

    public class Expect100ContinueFeature
    extends Object
    implements Feature
    • Constructor Detail

      • Expect100ContinueFeature

        public Expect100ContinueFeature()
    • Method Detail

      • withCustomThreshold

        public static Expect100ContinueFeature withCustomThreshold​(long thresholdSize)
        Creates Expect100ContinueFeature with custom (not default) threshold size for content length.
        Parameters:
        thresholdSize - size of threshold
        Returns:
        Expect100Continue Feature
      • basic

        public static Expect100ContinueFeature basic()
        Creates Expect100Continue Feature with default threshold size
        Returns:
        Expect100Continue Feature
      • configure

        public boolean configure​(FeatureContext configurableContext)
        Description copied from interface: Feature
        A call-back method called when the feature is to be enabled in a given runtime configuration scope. The responsibility of the feature is to properly update the supplied runtime configuration context and return true if the feature was successfully enabled or false otherwise.

        Note that under some circumstances the feature may decide not to enable itself, which is indicated by returning false. In such case the configuration context does not add the feature to the collection of enabled features and a subsequent call to Configuration.isEnabled(Feature) or Configuration.isEnabled(Class) method would return false.

        Specified by:
        configure in interface Feature
        Parameters:
        configurableContext - configurable context in which the feature should be enabled.
        Returns:
        true if the feature was successfully enabled, false otherwise.