Looking at the (practically non-existent) documentation for AuthorizationServerSecurityConfigurer
I do not see any description for the realm
method. What is it's purpose?
I have seen it used in an example online in the following way, but without any description so I'm still not sure
@Override
public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception {
oauthServer
.realm(RESOURCE_ID + "/client")
.accessDeniedHandler(accessDeniedHandler)
.authenticationEntryPoint(entryPoint);
}