mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-23 09:10:51 +00:00
* add @Valid/@Validated annotations to controller methods and nested models * update spring samples
141 lines
4.3 KiB
Plaintext
141 lines
4.3 KiB
Plaintext
/**
|
|
* {{#description}}{{.}}{{/description}}{{^description}}{{classname}}{{/description}}
|
|
*/{{#description}}
|
|
@ApiModel(description = "{{{description}}}"){{/description}}
|
|
{{#useBeanValidation}}@Validated{{/useBeanValidation}}
|
|
{{>generatedAnnotation}}{{#discriminator}}{{>typeInfoAnnotation}}{{/discriminator}}{{>xmlAnnotation}}
|
|
public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#serializableModel}}implements Serializable{{/serializableModel}} {
|
|
{{#serializableModel}}
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
{{/serializableModel}}
|
|
{{#vars}}
|
|
{{#isEnum}}
|
|
{{^isContainer}}
|
|
{{>enumClass}}
|
|
{{/isContainer}}
|
|
{{/isEnum}}
|
|
{{#items.isEnum}}
|
|
{{#items}}
|
|
{{^isContainer}}
|
|
{{>enumClass}}
|
|
{{/isContainer}}
|
|
{{/items}}
|
|
{{/items.isEnum}}
|
|
{{#jackson}}
|
|
@JsonProperty("{{baseName}}"){{#withXml}}
|
|
@JacksonXmlProperty({{#isXmlAttribute}}isAttribute = true, {{/isXmlAttribute}}{{#xmlNamespace}}namespace="{{xmlNamespace}}", {{/xmlNamespace}}localName = "{{#xmlName}}{{xmlName}}{{/xmlName}}{{^xmlName}}{{baseName}}{{/xmlName}}"){{/withXml}}
|
|
{{/jackson}}
|
|
{{#gson}}
|
|
@SerializedName("{{baseName}}")
|
|
{{/gson}}
|
|
{{#isContainer}}
|
|
{{#useBeanValidation}}@Valid{{/useBeanValidation}}
|
|
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
|
|
{{/isContainer}}
|
|
{{^isContainer}}
|
|
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}};
|
|
{{/isContainer}}
|
|
|
|
{{/vars}}
|
|
{{#vars}}
|
|
public {{classname}} {{name}}({{{datatypeWithEnum}}} {{name}}) {
|
|
this.{{name}} = {{name}};
|
|
return this;
|
|
}
|
|
{{#isListContainer}}
|
|
|
|
public {{classname}} add{{nameInCamelCase}}Item({{{items.datatypeWithEnum}}} {{name}}Item) {
|
|
{{^required}}
|
|
if (this.{{name}} == null) {
|
|
this.{{name}} = {{{defaultValue}}};
|
|
}
|
|
{{/required}}
|
|
this.{{name}}.add({{name}}Item);
|
|
return this;
|
|
}
|
|
{{/isListContainer}}
|
|
{{#isMapContainer}}
|
|
|
|
public {{classname}} put{{nameInCamelCase}}Item(String key, {{{items.datatypeWithEnum}}} {{name}}Item) {
|
|
{{^required}}
|
|
if (this.{{name}} == null) {
|
|
this.{{name}} = {{{defaultValue}}};
|
|
}
|
|
{{/required}}
|
|
this.{{name}}.put(key, {{name}}Item);
|
|
return this;
|
|
}
|
|
{{/isMapContainer}}
|
|
|
|
/**
|
|
{{#description}}
|
|
* {{{description}}}
|
|
{{/description}}
|
|
{{^description}}
|
|
* Get {{name}}
|
|
{{/description}}
|
|
{{#minimum}}
|
|
* minimum: {{minimum}}
|
|
{{/minimum}}
|
|
{{#maximum}}
|
|
* maximum: {{maximum}}
|
|
{{/maximum}}
|
|
* @return {{name}}
|
|
**/
|
|
{{#vendorExtensions.extraAnnotation}}
|
|
{{{vendorExtensions.extraAnnotation}}}
|
|
{{/vendorExtensions.extraAnnotation}}
|
|
@ApiModelProperty({{#example}}example = "{{{example}}}", {{/example}}{{#required}}required = {{required}}, {{/required}}{{#isReadOnly}}readOnly = {{{isReadOnly}}}, {{/isReadOnly}}value = "{{{description}}}")
|
|
{{#useBeanValidation}}{{>beanValidation}}{{/useBeanValidation}} public {{{datatypeWithEnum}}} {{getter}}() {
|
|
return {{name}};
|
|
}
|
|
|
|
public void {{setter}}({{{datatypeWithEnum}}} {{name}}) {
|
|
this.{{name}} = {{name}};
|
|
}
|
|
|
|
{{/vars}}
|
|
|
|
@Override
|
|
public boolean equals(java.lang.Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}{{#hasVars}}
|
|
{{classname}} {{classVarName}} = ({{classname}}) o;
|
|
return {{#vars}}Objects.equals(this.{{name}}, {{classVarName}}.{{name}}){{#hasMore}} &&
|
|
{{/hasMore}}{{/vars}}{{#parent}} &&
|
|
super.equals(o){{/parent}};{{/hasVars}}{{^hasVars}}
|
|
return true;{{/hasVars}}
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash({{#vars}}{{name}}{{#hasMore}}, {{/hasMore}}{{/vars}}{{#parent}}{{#hasVars}}, {{/hasVars}}super.hashCode(){{/parent}});
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class {{classname}} {\n");
|
|
{{#parent}}sb.append(" ").append(toIndentedString(super.toString())).append("\n");{{/parent}}
|
|
{{#vars}}sb.append(" {{name}}: ").append(toIndentedString({{name}})).append("\n");
|
|
{{/vars}}sb.append("}");
|
|
return sb.toString();
|
|
}
|
|
|
|
/**
|
|
* Convert the given object to string with each line indented by 4 spaces
|
|
* (except the first line).
|
|
*/
|
|
private String toIndentedString(java.lang.Object o) {
|
|
if (o == null) {
|
|
return "null";
|
|
}
|
|
return o.toString().replace("\n", "\n ");
|
|
}
|
|
}
|