Hi I got my claims for saml,when I tried saml with spring security PreAuthorize attribute it cannot detect my claims in saml response.Is there a way to use Saml claims with PreAuthorize Attribute in spring 3.
@GetMapping("/home")
@PreAuthorize("hasAnyAuthority('CLAIM_ADMIN')")
public String home()
{
System.out.println("Heyoo welcome to saml!!");
return "/homepath";
}