Package step.functions.io
Class Input<IN>
- java.lang.Object
- 
- step.functions.io.Input<IN>
 
- 
 public class Input<IN> extends Object 
- 
- 
Field SummaryFields Modifier and Type Field Description protected Stringfunctionprotected longfunctionCallTimeoutprotected INpayloadprotected Map<String,String>properties
 - 
Constructor SummaryConstructors Constructor Description Input()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Attachment>getAttachments()StringgetFunction()longgetFunctionCallTimeout()INgetPayload()Map<String,String>getProperties()voidsetAttachments(List<Attachment> attachments)voidsetFunction(String function)voidsetFunctionCallTimeout(long functionCallTimeout)voidsetPayload(IN payload)voidsetProperties(Map<String,String> properties)
 
- 
- 
- 
Method Detail- 
getFunctionpublic String getFunction() - Returns:
- the name of the function (keyword) to be executed
 
 - 
setFunctionpublic void setFunction(String function) 
 - 
getFunctionCallTimeoutpublic long getFunctionCallTimeout() - Returns:
- the call timeout of the function in ms
 
 - 
setFunctionCallTimeoutpublic void setFunctionCallTimeout(long functionCallTimeout) - Parameters:
- functionCallTimeout- the call timeout of the function in ms
 
 - 
getPayloadpublic IN getPayload() - Returns:
- the function payload
 
 - 
setPayloadpublic void setPayload(IN payload) 
 - 
getAttachmentspublic List<Attachment> getAttachments() 
 - 
setAttachmentspublic void setAttachments(List<Attachment> attachments) 
 
- 
 
-