* </properties>
* </destination>
**/
private HTTPProxyDestination createProxyDestination(String id, HTTPProxyService proxyService)
{
HTTPProxyDestination proxyDest = new HTTPProxyDestination(true);
proxyDest.setId(id);
proxyDest.setService(proxyService);
proxyDest.addChannel("qa-amf");
// set destination properties
proxyDest.addDynamicUrl("http://10.60.144.65:8080/services/httpservice/echoParams.jsp");
List list = new ArrayList();
list.add("http://10.60.144.65:8080/services/httpservice/echoParams.jsp");
proxyDest.addDynamicUrls(list);
proxyDest.setDefaultUrl("http://10.60.144.65:8080/services/httpservice/echoParams.jsp");
proxyDest.getDefaultUrl();
proxyDest.setRemoteUsername(null);
proxyDest.setRemotePassword(null);
proxyDest.getRemotePassword();
proxyDest.setUseCustomAuthentication(false);
proxyDest.isUseCustomAuthentication();
return proxyDest;
}