| Interface | Description |
|---|---|
| PayloadFilesManager.ActionReportHandler |
| Class | Description |
|---|---|
| InputStreamInboundPayload |
Implementation of a Payload.Inbound that works with InputStreams
Usage is like this:
CommandRunner.CommandInvocation ci =
commandRunner.getCommandInvocation("some-command", areport, theSubject);
InputStreamPayload in = new InputStreamInboundPayload();
// get an InputStream is from somewhere
in.addStream("someoption", is)
// get another InputStream for the operand
in.addStream("DEFAULT", is)
ParameterMap map = new ParameterMap();
// populate map with other options
ci.inbound(in).parameters(map).execute();
|
| PayloadFilesManager |
Manages transferred files delivered via the request or response
Payload. |
| PayloadFilesManager.Perm |
Extracts files from a Payload and leaves them on disk.
|
| PayloadFilesManager.Temp |
Extracts files from a payload, treating them as temporary files.
|
| PayloadImpl |
Abstract implementation of the Payload API.
|
| PayloadImpl.Inbound |
Partial implementation of the Inbound interface.
|
| PayloadImpl.Outbound | |
| PayloadImpl.Part |
Partial implementation of Part.
|
| TextPayloadImpl |
Implements the Payload API for a message containing only a single text part.
|
| TextPayloadImpl.Inbound |
Copyright © 2017–2020 Eclipse Foundation. All rights reserved.