I have a third-party REST service that I need to integrate with Spring security.
The REST service send the login and password as part of the JSON message, like this:
{
"user":"foo",
"pwd":"bar",
"employees": [
{ "firstName":"John" , "lastName":"Doe" },
{ "firstName":"Anna" , "lastName":"Smith" },
{ "firstName":"Peter" , "lastName":"Jones" }
]
}
I think that I need to do a custom-filter to handle the JSON message and login into the application, but I'm lost with the configuration.
Which interface do I need to implement in this custom-filter?
Any sample of a similar scenario?