1 16 package org.apache.juddi.proxy; 17 18 import java.net.URL ; 19 20 import org.apache.juddi.error.RegistryException; 21 import org.w3c.dom.Element ; 22 23 26 public interface Transport 27 { 28 Element send(Element request,URL endPointURL) 29 throws RegistryException; 30 31 String send(String request,URL endpointURL) 32 throws RegistryException; 33 } 34 | Popular Tags |