Java tutorial
/********************************************************************************** * * Copyright (c) 2017 The Sakai Foundation * * Original developers: * * Unicon based on code created by pascal alma * * Licensed under the Educational Community License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.osedu.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * **********************************************************************************/ package org.sakaiproject.rubrics.security; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.security.core.Authentication; import org.springframework.security.web.authentication.AuthenticationSuccessHandler; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Defines where to go after successful login. In this implementation just make sure nothing is done (REST API * contains no pages) */ public class JwtAuthenticationSuccessHandler implements AuthenticationSuccessHandler { private final Log logger = LogFactory.getLog(this.getClass()); @Override public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) { if (logger.isDebugEnabled()) { logger.debug(String.format("Authenticated: %s", authentication.isAuthenticated())); } } }