Package org.jboss.resteasy.links

Examples of org.jboss.resteasy.links.LinkResource


  }

  private static void processLinkResources(Method m, Object entity, UriInfo uriInfo,
      RESTServiceDiscovery ret) {
    // find a single service
    LinkResource service = m
    .getAnnotation(LinkResource.class);
    if(service != null)
      processLinkResource(m, entity, uriInfo, ret, service);
    // find a multi-service
    LinkResources services = m
View Full Code Here


  }

  private static void processLinkResources(Method m, Object entity, UriInfo uriInfo,
      RESTServiceDiscovery ret) {
    // find a single service
    LinkResource service = m
    .getAnnotation(LinkResource.class);
    if(service != null)
      processLinkResource(m, entity, uriInfo, ret, service);
    // find a multi-service
    LinkResources services = m
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.links.LinkResource

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.