The map is a static object defined on the root `Route` class.
This means that any changes made by its derived classes (e.g. by
specifying the `@authenticate` annotation on some methods) will impact
the object for all the other derived classes too.
To prevent clashes, the structure of the map has been changed from:
```
method -> preRequestHandler
```
to:
```
RouteClass.name -> method -> preRequestHandler
```