Class PathVariable


  • @OpenApi
    public class PathVariable
    extends java.lang.Object
    Path Variable definition.
    • Constructor Summary

      Constructors 
      Constructor Description
      PathVariable​(java.lang.String name, java.lang.String path, java.lang.String description)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Get variable description.
      java.lang.String getName()
      Get variable name.
      java.lang.String getPath()
      Get variable path.
      • Methods inherited from class java.lang.Object

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

      • PathVariable

        @OpenApi
        public PathVariable​(java.lang.String name,
                            java.lang.String path,
                            java.lang.String description)
        Constructor.
        Parameters:
        name - variable name.
        path - path.
        description - description.
    • Method Detail

      • getName

        @OpenApi
        public java.lang.String getName()
        Get variable name.
        Returns:
        name.
      • getPath

        @OpenApi
        public java.lang.String getPath()
        Get variable path.
        Returns:
        path.
      • getDescription

        @OpenApi
        public java.lang.String getDescription()
        Get variable description.
        Returns:
        description.