예제 #1
0
 /**
  * Creates a handler decorator that prepends a response timer to the rest of the handlers.
  *
  * @return a handler decorator.
  */
 public static HandlerDecorator decorator() {
   return HandlerDecorator.prepend(new ResponseTimer());
 }