Class MethodDirectives

    • Constructor Detail

      • MethodDirectives

        public MethodDirectives()
    • Method Detail

      • delete

        public Route delete​(java.util.function.Supplier<Route> inner)
      • get

        public Route get​(java.util.function.Supplier<Route> inner)
      • head

        public Route head​(java.util.function.Supplier<Route> inner)
      • options

        public Route options​(java.util.function.Supplier<Route> inner)
      • overrideMethodWithParameter

        public Route overrideMethodWithParameter​(java.lang.String paramName,
                                                 java.util.function.Supplier<Route> inner)
        Changes the HTTP method of the request to the value of the specified query string parameter. If the query string parameter is not specified this directive has no effect. If the query string is specified as something that is not a HTTP method, then this directive completes the request with a 501 Not Implemented response.

        This directive is useful for: - Use in combination with JSONP (JSONP only supports GET) - Supporting older browsers that lack support for certain HTTP methods. E.g. IE8 does not support PATCH

        Parameters:
        paramName - (undocumented)
        inner - (undocumented)
        Returns:
        (undocumented)
      • patch

        public Route patch​(java.util.function.Supplier<Route> inner)
      • post

        public Route post​(java.util.function.Supplier<Route> inner)
      • put

        public Route put​(java.util.function.Supplier<Route> inner)