Search in sources :

Example 6 with CertificateManager

use of com.twinsoft.convertigo.engine.CertificateManager in project convertigo by convertigo.

the class HttpConnector method clone.

@Override
public HttpConnector clone() throws CloneNotSupportedException {
    HttpConnector clonedObject = (HttpConnector) super.clone();
    clonedObject.httpStateListeners = new EventListenerList();
    clonedObject.sUrl = "";
    clonedObject.handleCookie = true;
    clonedObject.httpParameters = new XMLVector<XMLVector<String>>();
    clonedObject.postQuery = "";
    clonedObject.certificateManager = new CertificateManager();
    clonedObject.hostConfiguration = new HostConfiguration();
    clonedObject.givenAuthPassword = null;
    clonedObject.givenAuthUser = null;
    return clonedObject;
}
Also used : XMLVector(com.twinsoft.convertigo.beans.common.XMLVector) HostConfiguration(org.apache.commons.httpclient.HostConfiguration) EventListenerList(javax.swing.event.EventListenerList) CertificateManager(com.twinsoft.convertigo.engine.CertificateManager)

Aggregations

CertificateManager (com.twinsoft.convertigo.engine.CertificateManager)6 HostConfiguration (org.apache.commons.httpclient.HostConfiguration)3 Context (com.twinsoft.convertigo.engine.Context)2 EngineException (com.twinsoft.convertigo.engine.EngineException)2 IOException (java.io.IOException)2 UsernamePasswordCredentials (org.apache.commons.httpclient.UsernamePasswordCredentials)2 AuthScope (org.apache.commons.httpclient.auth.AuthScope)2 XMLVector (com.twinsoft.convertigo.beans.common.XMLVector)1 HttpConnector (com.twinsoft.convertigo.beans.connectors.HttpConnector)1 ProxyHttpConnector (com.twinsoft.convertigo.beans.connectors.ProxyHttpConnector)1 Project (com.twinsoft.convertigo.beans.core.Project)1 SiteClipperScreenClass (com.twinsoft.convertigo.beans.screenclasses.SiteClipperScreenClass)1 AbstractBiller (com.twinsoft.convertigo.engine.AbstractBiller)1 DomainsFilterHelper (com.twinsoft.convertigo.engine.helpers.DomainsFilterHelper)1 ByteArrayOutputStream (java.io.ByteArrayOutputStream)1 InputStream (java.io.InputStream)1 OutputStream (java.io.OutputStream)1 UnsupportedEncodingException (java.io.UnsupportedEncodingException)1 MalformedURLException (java.net.MalformedURLException)1 URL (java.net.URL)1