If I want to serve the token from a '/some_path/oauth/token' as opposed to the default '/oauth/token' what are the things I must change?

I understand I need to change the http pattern for oauth server to
Code:
<http pattern="/some_path/oauth/token".../>
Also need to add an endpoint url as follows
Code:
<oauth:authorization-server token-endpoint-url="/some_path/oauth/token".../>
Is there anything else that I need to do for this to work?

Thanks