From 75423a948de17e3d0f73d6171023df7dad885ff9 Mon Sep 17 00:00:00 2001 From: ulrich <ulli@amd-srv> Date: Sat, 19 Jun 2021 06:39:55 +0000 Subject: [PATCH] Link zur Produktseite in Readme aufgenommen --- 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