1 16 17 18 package org.apache.xmlrpc; 19 20 import java.util.Properties ; 21 22 37 public interface XmlRpcTransportFactory 38 { 39 public static final String TRANSPORT_URL = "url"; public static final String TRANSPORT_AUTH = "auth"; 42 public static final Class [] CONSTRUCTOR_SIGNATURE = new Class [] { Properties .class }; 43 public static final String CONSTRUCTOR_SIGNATURE_STRING = "(java.util.Properties properties)"; 44 45 51 public XmlRpcTransport createTransport() 52 throws XmlRpcClientException; 53 54 60 public void setProperty(String propertyName, Object value); 61 } 62 | Popular Tags |