Class AbstractTransportRequest<TransportType extends AbstractTransport>
- java.lang.Object
-
- com.openindex.openestate.tool.agency.export.AbstractTransportRequest<TransportType>
-
- Direct Known Subclasses:
FtpTransport.Request
,HttpTransport.Request
,Is24RestTransport.Is24ExportRequest
,LocalTransport.Request
,SftpTransport.Request
public abstract class AbstractTransportRequest<TransportType extends AbstractTransport> extends Object
TransportRequest.- Author:
- Andreas Rudolph
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AbstractTransportRequest.TransferException
-
Constructor Summary
Constructors Constructor Description AbstractTransportRequest(TransportType transport)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract AbstractTransportRequest[]
getChildRequests()
abstract String
getTitle()
TransportType
getTransport()
abstract void
send(ExportContext context, ImmoToolTask.Callback callback)
-
-
-
Constructor Detail
-
AbstractTransportRequest
public AbstractTransportRequest(TransportType transport)
-
-
Method Detail
-
getChildRequests
public abstract AbstractTransportRequest[] getChildRequests()
-
getTitle
public abstract String getTitle()
-
getTransport
public final TransportType getTransport()
-
send
public abstract void send(ExportContext context, ImmoToolTask.Callback callback) throws AbstractTransportRequest.TransferException
-
-