Uses of Class
org.eclipse.aether.spi.connector.transport.PutTask
-
Packages that use PutTask Package Description org.eclipse.aether.spi.connector.transport The contract to download/upload URI-based resources using custom transport protocols.org.eclipse.aether.transport.classpath Support for downloads that utilize the classpath as "remote" storage.org.eclipse.aether.transport.file Support for downloads/uploads using the local filesystem as "remote" storage.org.eclipse.aether.transport.http Support for downloads/uploads via the HTTP and HTTPS protocols.org.eclipse.aether.transport.wagon Support for downloads/uploads using Apache Maven Wagon. -
-
Uses of PutTask in org.eclipse.aether.spi.connector.transport
Methods in org.eclipse.aether.spi.connector.transport that return PutTask Modifier and Type Method Description PutTask
PutTask. setDataBytes(byte[] bytes)
Sets the binary data to be uploaded.PutTask
PutTask. setDataFile(java.io.File dataFile)
Sets the file with the data to be uploaded.PutTask
PutTask. setDataString(java.lang.String str)
Sets the textual data to be uploaded.PutTask
PutTask. setListener(TransportListener listener)
Sets the listener that is to be notified during the transfer.Methods in org.eclipse.aether.spi.connector.transport with parameters of type PutTask Modifier and Type Method Description protected abstract void
AbstractTransporter. implPut(PutTask task)
ImplementsAbstractTransporter.put(PutTask)
, gets only called if the transporter has not been closed.void
AbstractTransporter. put(PutTask task)
void
Transporter. put(PutTask task)
Uploads a resource to the repository.protected void
AbstractTransporter. utilPut(PutTask task, java.io.OutputStream os, boolean close)
Performs stream-based I/O for the specified upload task and notifies the configured transport listener. -
Uses of PutTask in org.eclipse.aether.transport.classpath
Methods in org.eclipse.aether.transport.classpath with parameters of type PutTask Modifier and Type Method Description protected void
ClasspathTransporter. implPut(PutTask task)
-
Uses of PutTask in org.eclipse.aether.transport.file
Methods in org.eclipse.aether.transport.file with parameters of type PutTask Modifier and Type Method Description protected void
FileTransporter. implPut(PutTask task)
-
Uses of PutTask in org.eclipse.aether.transport.http
Fields in org.eclipse.aether.transport.http declared as PutTask Modifier and Type Field Description private PutTask
HttpTransporter.PutTaskEntity. task
Methods in org.eclipse.aether.transport.http with parameters of type PutTask Modifier and Type Method Description protected void
HttpTransporter. implPut(PutTask task)
Constructors in org.eclipse.aether.transport.http with parameters of type PutTask Constructor Description PutTaskEntity(PutTask task)
-
Uses of PutTask in org.eclipse.aether.transport.wagon
Fields in org.eclipse.aether.transport.wagon declared as PutTask Modifier and Type Field Description private PutTask
WagonTransporter.PutTaskRunner. task
Methods in org.eclipse.aether.transport.wagon with parameters of type PutTask Modifier and Type Method Description void
WagonTransporter. put(PutTask task)
Constructors in org.eclipse.aether.transport.wagon with parameters of type PutTask Constructor Description PutTaskRunner(PutTask task)
-