All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.progressoft.brix.domino.api.server.handler.HandlersRepository Maven / Gradle / Ivy

The newest version!
package com.progressoft.brix.domino.api.server.handler;

public interface HandlersRepository {

    void registerHandler(String path, RequestHandler handler);
    RequestHandler findHandler(String path);

    class RequestHandlerHaveAlreadyBeenRegistered extends RuntimeException {
        public RequestHandlerHaveAlreadyBeenRegistered(String message) {
            super(message);
        }
    }

    class RequestHandlerNotFound extends RuntimeException {
        public RequestHandlerNotFound(String message) {
            super(message);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy