Class BasicOperation

java.lang.Object
com.kingsrook.qqq.middleware.javalin.specs.BasicOperation
Direct Known Subclasses:
CompleteOperation

public class BasicOperation extends Object
Basic definition of an operation (e.g., an endpoint exposed in the API).
  • Constructor Details

    • BasicOperation

      public BasicOperation()
  • Method Details

    • getPath

      public String getPath()
      Getter for path
    • setPath

      public void setPath(String path)
      Setter for path
    • withPath

      public BasicOperation withPath(String path)
      Fluent setter for path
    • getHttpMethod

      public HttpMethod getHttpMethod()
      Getter for httpMethod
    • setHttpMethod

      public void setHttpMethod(HttpMethod httpMethod)
      Setter for httpMethod
    • withHttpMethod

      public BasicOperation withHttpMethod(HttpMethod httpMethod)
      Fluent setter for httpMethod
    • getTag

      public TagsInterface getTag()
      Getter for tag
    • setTag

      public void setTag(TagsInterface tag)
      Setter for tag
    • withTag

      public BasicOperation withTag(TagsInterface tag)
      Fluent setter for tag
    • getShortSummary

      public String getShortSummary()
      Getter for shortSummary
    • setShortSummary

      public void setShortSummary(String shortSummary)
      Setter for shortSummary
    • withShortSummary

      public BasicOperation withShortSummary(String shortSummary)
      Fluent setter for shortSummary
    • getLongDescription

      public String getLongDescription()
      Getter for longDescription
    • setLongDescription

      public void setLongDescription(String longDescription)
      Setter for longDescription
    • withLongDescription

      public BasicOperation withLongDescription(String longDescription)
      Fluent setter for longDescription