Class PathItemObject

java.lang.Object
com.github.chhorz.openapi.common.domain.PathItemObject

public class PathItemObject extends Object
https://spec.openapis.org/oas/v3.1.0#path-item-object
Author:
chhorz
  • Constructor Details

    • PathItemObject

      public PathItemObject()
  • Method Details

    • getSummary

      public String getSummary()
    • setSummary

      public void setSummary(String summary)
    • getDescription

      public String getDescription()
    • setDescription

      public void setDescription(String description)
    • getGet

      public Operation getGet()
    • setGet

      public void setGet(Operation get)
    • getPut

      public Operation getPut()
    • setPut

      public void setPut(Operation put)
    • getPost

      public Operation getPost()
    • setPost

      public void setPost(Operation post)
    • getDelete

      public Operation getDelete()
    • setDelete

      public void setDelete(Operation delete)
    • getOptions

      public Operation getOptions()
    • setOptions

      public void setOptions(Operation options)
    • getHead

      public Operation getHead()
    • setHead

      public void setHead(Operation head)
    • getPatch

      public Operation getPatch()
    • setPatch

      public void setPatch(Operation patch)
    • getTrace

      public Operation getTrace()
    • setTrace

      public void setTrace(Operation trace)