Class AbstractUrlConnectionOutgoingFileTransfer
java.lang.Object
org.eclipse.ecf.provider.filetransfer.outgoing.AbstractOutgoingFileTransfer
org.eclipse.ecf.provider.filetransfer.outgoing.AbstractUrlConnectionOutgoingFileTransfer
- All Implemented Interfaces:
org.eclipse.core.runtime.IAdaptable
,IIdentifiable
,IFileTransfer
,IOutgoingFileTransfer
,ISendFileTransferContainerAdapter
,ISendFileTransfer
public abstract class AbstractUrlConnectionOutgoingFileTransfer
extends AbstractOutgoingFileTransfer
implements ISendFileTransfer
-
Field Summary
Modifier and TypeFieldDescriptionprotected int
protected long
protected int
protected String
protected URLConnection
Fields inherited from class org.eclipse.ecf.provider.filetransfer.outgoing.AbstractOutgoingFileTransfer
buff_length, bytesSent, connectContext, DEFAULT_BUF_LENGTH, done, exception, fileTransferInfo, job, listener, localFileContents, options, proxy, remoteFileContents, remoteFileID, remoteFileURL
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
connect()
Setup and connect.int
protected void
protected boolean
protected void
Open incoming and outgoing streams associated with this file transfer.protected void
setupProxy
(Proxy proxy2) Methods inherited from class org.eclipse.ecf.provider.filetransfer.outgoing.AbstractOutgoingFileTransfer
addListener, cancel, createJobName, fireSendStartEvent, fireTransferSendDataEvent, fireTransferSendDoneEvent, getAdapter, getBytesSent, getException, getFileLength, getFileTransferInfo, getFinalStatus, getID, getListener, getOptions, getOutgoingNamespace, getPercentComplete, getRemoteFileURL, isDone, removeListener, selectProxyFromProxies, sendOutgoingRequest, sendOutgoingRequest, setConnectContextForAuthentication, setInputStream, setOutputStream, setProxy, setupAndScheduleJob, setupProxies
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
Methods inherited from interface org.eclipse.ecf.filetransfer.ISendFileTransferContainerAdapter
addListener, getOutgoingNamespace, removeListener, sendOutgoingRequest, sendOutgoingRequest, setConnectContextForAuthentication, setProxy
-
Field Details
-
urlConnection
-
lastModifiedTime
protected long lastModifiedTime -
httpVersion
protected int httpVersion -
responseCode
protected int responseCode -
responseMessage
-
-
Constructor Details
-
AbstractUrlConnectionOutgoingFileTransfer
public AbstractUrlConnectionOutgoingFileTransfer()
-
-
Method Details
-
connect
Setup and connect. Subclasses should override as appropriate. After calling is complete, theurlConnection
member variable should be non-null, and ready to have it's getInputStream() method called.- Throws:
IOException
- if the connection cannot be opened.
-
isConnected
protected boolean isConnected() -
getResponseCode
public int getResponseCode() -
setupProxy
- Specified by:
setupProxy
in classAbstractOutgoingFileTransfer
- Parameters:
proxy2
- the ECF proxy to setup
-
openStreams
Description copied from class:AbstractOutgoingFileTransfer
Open incoming and outgoing streams associated with this file transfer. Subclasses must implement this method to open input and output streams. TheremoteFileContents
andlocalFileContent
must be non-null
after successful completion of the implementation of this method.- Specified by:
openStreams
in classAbstractOutgoingFileTransfer
- Throws:
SendFileTransferException
- if some problem
-
hardClose
protected void hardClose()- Overrides:
hardClose
in classAbstractOutgoingFileTransfer
-