Update SingleLogout.java

This commit is contained in:
MaxKey 2022-10-22 17:09:30 +08:00
parent 91a6fd6d4d
commit d810cfe22e

View File

@ -31,7 +31,7 @@ public abstract class SingleLogout {
public abstract void sendRequest(Authentication authentication,Apps logoutApp) ; public abstract void sendRequest(Authentication authentication,Apps logoutApp) ;
public void postMessage(String url,Map<String, Object> paramMap) { public void postMessage(String url,Map<String, Object> paramMap) {
_logger.debug("post message to url {}" , url); _logger.debug("post logout message to url {}" , url);
(new HttpRequestAdapter()).post(url , paramMap); (new HttpRequestAdapter()).post(url , paramMap);
} }
} }