001    package hirondelle.web4j.config;
002    
003    import javax.servlet.http.HttpServletRequest;
004    import javax.servlet.http.HttpSession;
005    
006    import hirondelle.web4j.model.AppException;
007    import hirondelle.web4j.security.LoginTasks;
008    
009    /** This implementation does nothing. */ 
010    public final class Login implements LoginTasks {
011      
012      /** Do nothing. */ 
013      public void reactToUserLogin(HttpSession arg0, HttpServletRequest arg1) throws AppException {
014        //do nothing
015      }
016      
017      /** Returns true. */
018      public boolean hasAlreadyReacted(HttpSession arg0) {
019        return true;
020      }
021    
022    }