Interface RequestHandlerFactory

  • All Known Implementing Classes:
    ICalHandlerFactory
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface RequestHandlerFactory
    • Method Detail

      • getHandler

        RequestHandler getHandler​(java.lang.String method)
        Returns a RequestHandler instance appropriate for the WebDAV HTTP methods.
        Parameters:
        method - the WebDAV HTTP method which can be PROPFIND, PROPPATCH, MKCOL, GET, HEAD, POST, DELETE, PUT, COPY, MOVE, LOCK, or UNLOCK.
        Returns:
        a RequestHandler instance which can't be null.