Help with query #863
              
                
                  
                  
                    Answered
                  
                  by
                    aschackmull
                  
              
          
                  
                    
                      akanksha1331
                    
                  
                
                  asked this question in
                Q&A
              
            -
| @RequestMapping(value = "/login", method = RequestMethod.POST)
public String processLogin(
            @RequestParam(value = "user", required = true) String username,
            @RequestParam(value = "password", required = true) String password,
            @RequestParam(value = "remember", required = false) String remember,
            @RequestParam(value = "target", required = false) String target,
            Model model,
            HttpServletRequest req,
            HttpServletResponse response)I want to write a predicate isSource() which basically is tracking all the parameters of functions with a @RequestMapping . predicate isSource(DataFlow::Node src){ ...  }Can anyone please guide me on this? | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            aschackmull
          
      
      
        Nov 28, 2024 
      
    
    Replies: 1 comment 1 reply
-
| Sounds simple enough. How about this:  | 
Beta Was this translation helpful? Give feedback.
                  
                    1 reply
                  
                
            
      Answer selected by
        akanksha1331
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Sounds simple enough. How about this: