Package com.googlecode.sonic.annotation

Examples of com.googlecode.sonic.annotation.RequestMapping


  private static void parse(String canonicalName, Method method) {
    if (!Modifier.isPublic(method.getModifiers())
        || Modifier.isAbstract(method.getModifiers())) {
      return;
    }
    RequestMapping requestMapping = method
        .getAnnotation(RequestMapping.class);
    if (requestMapping != null)
      putIfAbsent(requestMapping.to(),
          new StringBuilder().append(canonicalName).append("#")
              .append(method.getName()).toString());
  }
View Full Code Here

TOP

Related Classes of com.googlecode.sonic.annotation.RequestMapping

Copyright © 2018 www.massapicom. 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.