addRoute(method, fastClass.getJavaClass().getName(), controllerVariable, action, isDefaultController);
}
private EntityMarshaller getParamEntityMarshaller(Method method, String className) {
EntityMarshaller paramMarshaller = new DefaultEntityMarshaller();
Annotation[][] paramAnnotations = method.getParameterAnnotations();
List<Entity> entityAnnotations = new ArrayList<Entity>();
for (Annotation[] annotationsForParam : paramAnnotations) {
for (Annotation annotation : annotationsForParam) {
if (annotation instanceof Entity) {