Class FunctionInput<IN>

  • Type Parameters:
    IN -

    public class FunctionInput<IN>
    extends java.lang.Object
    This class encapsulates the arguments of a function (aka Keyword). The arguments combine the payload and a list of properties.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected IN payload  
      protected java.util.Map<java.lang.String,​java.lang.String> properties  
    • Constructor Summary

      Constructors 
      Constructor Description
      FunctionInput()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      IN getPayload()  
      java.util.Map<java.lang.String,​java.lang.String> getProperties()  
      void setPayload​(IN payload)  
      void setProperties​(java.util.Map<java.lang.String,​java.lang.String> properties)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • payload

        protected IN payload
      • properties

        protected java.util.Map<java.lang.String,​java.lang.String> properties
    • Constructor Detail

      • FunctionInput

        public FunctionInput()
    • Method Detail

      • getPayload

        public IN getPayload()
        Returns:
        the function payload
      • setPayload

        public void setPayload​(IN payload)
      • getProperties

        public java.util.Map<java.lang.String,​java.lang.String> getProperties()
        Returns:
        the list of properties in addition to the payload
      • setProperties

        public void setProperties​(java.util.Map<java.lang.String,​java.lang.String> properties)