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

generator.server.springboot.mvc.web.test.RestMandatoryParameter.mustache Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package {{ packageName }}.shared.error_generator.infrastructure.primary;

import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.constraints.NotBlank;

class RestMandatoryParameter {

  private final String parameter;

  public RestMandatoryParameter(@JsonProperty("parameter") String parameter) {
    this.parameter = parameter;
  }

  @NotBlank
  public String getParameter() {
    return parameter;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy