Package org.jboss.resteasy.client.jaxrs.internal.proxy

Examples of org.jboss.resteasy.client.jaxrs.internal.proxy.ClientProxy


    Class<?>[] intfs =
    {
        iface
    };

    ClientProxy clientProxy = new ClientProxy(methodMap);
    // this is done so that equals and hashCode work ok. Adding the proxy to a
    // Collection will cause equals and hashCode to be invoked. The Spring
    // infrastructure had some problems without this.
    clientProxy.setClazz(iface);

    return (T) Proxy.newProxyInstance(config.getLoader(), intfs, clientProxy);
  }
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.client.jaxrs.internal.proxy.ClientProxy

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.