Class EntityMethodCall

java.lang.Object
com.priint.pubserver.entity.EntityMethodCall
All Implemented Interfaces:
Serializable

public class EntityMethodCall extends Object implements Serializable
The type Entity method call.
See Also:
  • Constructor Details

    • EntityMethodCall

      public EntityMethodCall()
  • Method Details

    • getMethod

      public String getMethod()
      Get the method name as string.

      Defaults to an empty string.

      Returns:
      the method name
    • setMethod

      public void setMethod(String method)
      Set the method name as string.

      Throws NullArgumentException if input is null.

      Parameters:
      method - name
    • getEntityModel

      public EntityModel getEntityModel()
      Get the referenced entity model.

      Defaults to an empty model.

      Returns:
      EntityModel
    • setEntityModel

      public void setEntityModel(EntityModel entityModel)
      Set the referenced entity model.

      Throws NullArgumentException if input is null.

      Parameters:
      entityModel -
    • getParameter

      public List<KeyValue> getParameter()
      Get the list of parameters.

      Defaults to an empty list.

      Returns:
      parameter as List of KeyValue
    • setParameter

      public void setParameter(List<KeyValue> parameter)
      Set the list of parameters.

      Throws NullArgumentException if input is null

      Parameters:
      parameter -
    • getDescription

      public String getDescription()
      Get the description.

      Defaults to an empty string.

      Returns:
      description as String
    • setDescription

      public void setDescription(String description)
      Set the description.

      Throws NullArgumentException if input is null.

      Parameters:
      description -