From a4bee5006ebefa00e3f39cc99c2975b014623874 Mon Sep 17 00:00:00 2001 From: ulrich Date: Tue, 15 Jun 2021 15:34:35 +0000 Subject: [PATCH] Kommentare ergaenzt --- src/de/uhilger/httpserver/oauth/BearerLoginHandler.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/de/uhilger/httpserver/oauth/BearerLoginHandler.java b/src/de/uhilger/httpserver/oauth/BearerLoginHandler.java index d3f6966..e153ae5 100644 --- a/src/de/uhilger/httpserver/oauth/BearerLoginHandler.java +++ b/src/de/uhilger/httpserver/oauth/BearerLoginHandler.java @@ -77,6 +77,12 @@ "refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA" } */ + /** + * Login-Anfragen ausfuehren + * + * @param exchange das Objekt mit Informationen zu HTTP-Anfrage und -Antwort + * @throws IOException + */ @Override public void handle(HttpExchange exchange) throws IOException { HttpContext context = exchange.getHttpContext(); @@ -92,6 +98,12 @@ } } + /** + * Die Antwort des Authenticators auf eine Login-Anfrage verarbeiten + * @param exchange das Objekt mit Informationen zu HTTP-Anfrage und -Antwort + * @param response die Antwort des Autehnticators + * @throws IOException + */ protected void handleLoginResponse(HttpExchange exchange, LoginResponse response) throws IOException { if(response != null) { setLoginHeader(exchange); -- Gitblit v1.9.3