1 29 30 package com.caucho.soa.client; 31 32 import javax.xml.bind.JAXBException; 33 import java.net.MalformedURLException ; 34 35 public interface EncodingProxyFactory { 36 public Object getProxy(Class serviceInterface, String url) 37 throws MalformedURLException , JAXBException; 38 39 public Object getProxy(Class serviceInterface, String url, 40 Class [] jaxbClasses) 41 throws MalformedURLException , JAXBException; 42 43 public Object getProxy(Class serviceInterface, String url, 44 String jaxbPackages) 45 throws MalformedURLException , JAXBException; 46 } 47 | Popular Tags |