}
At at = method.getAnnotation(At.class);
if (at == null) continue;
String url = at.path()[0];
RestRequest.Method[] httpMethods = at.types();
for (RestRequest.Method httpMethod : httpMethods) {
Tuple<Class<ApplicationController>, Method> tuple = new Tuple<Class<ApplicationController>, Method>(clzz, method);
restController.registerHandler(httpMethod, url, tuple);
api.addPath(tuple.v2());