git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/branches/REL_2@2881
ab3bd59b-922f-494d-bb5f-
6f0a3c29deca
/** {@inheritDoc} */
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException,
IOException {
- String username = DatatypeHelper.safeTrimOrNullString(request.getParameter(usernameAttribute));
- String password = DatatypeHelper.safeTrimOrNullString(request.getParameter(passwordAttribute));
+ String username = request.getParameter(usernameAttribute);
+ String password = request.getParameter(passwordAttribute);
if (username == null || password == null) {
redirectToLoginPage(request, response, null);