Do not use the WebLogic ServletAuthentication invalidateAll method

This rule detects the use of the WebLogic ServletAuthentication class. All references to the class weblogic.servlet.security.ServletAuthentication are flagged.

WebLogic ServletAuthentication is a proprietary API and cannot be used in WebSphere traditional or Liberty. Use the HttpServletRequest.login() and HttpServletRequest.logout() methods from the Java platform to handle authentication.

See the Java documentation for the HttpServletRequest interface.