Class RouteDescription
- java.lang.Object
-
- io.quarkus.vertx.http.runtime.devmode.RouteDescription
-
public class RouteDescription extends Object
-
-
Constructor Summary
Constructors Constructor Description RouteDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetConsumes()StringgetHttpMethod()StringgetJavaMethod()StringgetPath()StringgetProduces()voidsetConsumes(String consumes)voidsetHttpMethod(String httpMethod)voidsetJavaMethod(String javaMethod)voidsetPath(String path)voidsetProduces(String produces)
-
-
-
Method Detail
-
getJavaMethod
public String getJavaMethod()
-
setJavaMethod
public void setJavaMethod(String javaMethod)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getHttpMethod
public String getHttpMethod()
-
setHttpMethod
public void setHttpMethod(String httpMethod)
-
getProduces
public String getProduces()
-
setProduces
public void setProduces(String produces)
-
getConsumes
public String getConsumes()
-
setConsumes
public void setConsumes(String consumes)
-
-