Package step.functions.io
Class Output<OUT>
- java.lang.Object
-
- step.functions.io.Output<OUT>
-
public class Output<OUT> extends Object
-
-
Constructor Summary
Constructors Constructor Description Output()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Attachment>
getAttachments()
Error
getError()
List<Measure>
getMeasures()
OUT
getPayload()
void
setAttachments(List<Attachment> attachments)
void
setError(Error error)
void
setMeasures(List<Measure> measures)
void
setPayload(OUT payload)
-
-
-
Method Detail
-
getPayload
public OUT getPayload()
-
setPayload
public void setPayload(OUT payload)
-
getError
public Error getError()
-
setError
public void setError(Error error)
-
getAttachments
public List<Attachment> getAttachments()
-
setAttachments
public void setAttachments(List<Attachment> attachments)
-
-