blob: 16a3b7eadc405228a9d484f74f67a11b97853fb2 [file] [log] [blame]
package org.xmlrpc.android;
import java.net.URI;
public class XMLRPCFactoryDefault implements XMLRPCFactoryAbstract {
public XMLRPCClientInterface make(URI uri, String httpUser, String httpPassword) {
return new XMLRPCClient(uri, httpUser, httpPassword);
}
}