Class InvokeRequest

java.lang.Object
software.amazon.jsii.api.InvokeRequest

@Internal public class InvokeRequest extends Object
Represents a method invocation jsii-runtime request.
  • Constructor Details

    • InvokeRequest

      public InvokeRequest()
  • Method Details

    • getObjref

      public com.fasterxml.jackson.databind.node.ObjectNode getObjref()
      Returns:
      The object reference.
    • setObjref

      public void setObjref(com.fasterxml.jackson.databind.node.ObjectNode objref)
      Parameters:
      objref - The object reference.
    • getMethod

      public String getMethod()
      Returns:
      The method to invoke.
    • setMethod

      public void setMethod(String method)
      Parameters:
      method - The method to invoke.
    • getArgs

      public List<com.fasterxml.jackson.databind.JsonNode> getArgs()
      Returns:
      Method arguments.
    • setArgs

      public void setArgs(List<com.fasterxml.jackson.databind.JsonNode> args)
      Parameters:
      args - Method arguments.