Class HttpPutFormContentParser


  • public class HttpPutFormContentParser
    extends java.lang.Object
    Support for HTTP request methods like PUT/PATCH/DELETE.

    The Servlet spec requires form data to be available for HTTP POST but not for HTTP PUT or PATCH requests. This parser intercepts HTTP PUT and PATCH requests where content type is 'application/x-www-form-urlencoded', reads form encoded content from the body of the request.

    Since:
    2.3.0
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void parse​(RequestAdapter requestAdapter)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • HttpPutFormContentParser

        public HttpPutFormContentParser()
    • Method Detail