All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dinject.javalin.generator.WebMethod Maven / Gradle / Ivy

There is a newer version: 1.22
Show newest version
package io.dinject.javalin.generator;

enum WebMethod {
  GET(200),
  PUT(200),
  POST(201),
  PATCH(200),
  DELETE(200);

  private int statusCode;

  WebMethod(int statusCode) {
    this.statusCode = statusCode;
  }

  int statusCode() {
    return statusCode;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy