Package org.sonatype.nexus.componentviews.Router

Examples of org.sonatype.nexus.componentviews.Router.Route.dispatch()


      if (route == null) {
        log.debug("No route found for request.");
        return routeOfLastResort.dispatch(context);
      }

      return route.dispatch(context);
    }
    catch (Exception e) {
      // Exceptions will get caught by a global filter and nicely reported as 500 errors.
      throw Throwables.propagate(e);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.