forked from asyncapi/java-spring-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path$$objectSchema$$.java
183 lines (162 loc) · 8.31 KB
/
$$objectSchema$$.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package {{ params['userJavaPackage'] }}.model;
import javax.validation.constraints.*;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.List;
import java.util.Objects;
{% if schema.description() or schema.examples() %}/**{% for line in schema.description() | splitByLines %}
* {{ line | safe}}{% endfor %}{% if schema.examples() %}
* Examples: {{schema.examples() | examplesToString | safe}}{% endif %}
*/{% endif %}
public class {{schemaName | camelCase | upperFirst}} {
{% for propName, prop in schema.properties() %}
{%- set isRequired = propName | isRequired(schema.required()) %}
{%- if prop.type() === 'object' %}
private @Valid {{prop.uid() | camelCase | upperFirst}} {{propName | camelCase}};
{%- elif prop.type() === 'array' %}
{%- if prop.items().type() === 'object' %}
private @Valid List<{{prop.items().uid() | camelCase | upperFirst}}> {{propName | camelCase}}List;
{%- elif prop.items().format() %}
private @Valid List<{{prop.items().format() | toJavaType | toClass}}> {{propName | camelCase}}List;
{%- else %}
private @Valid List<{{prop.items().type() | toJavaType | toClass}}> {{propName | camelCase}}List;
{%- endif %}
{%- elif prop.enum() and (prop.type() === 'string' or prop.type() === 'integer') %}
public enum {{propName | camelCase | upperFirst}}Enum {
{% for e in prop.enum() %}
{%- if prop.type() === 'string'%}
{{e | upper | createEnum}}(String.valueOf("{{e}}")){% if not loop.last %},{% else %};{% endif %}
{%- else %}
NUMBER_{{e}}({{e}}){% if not loop.last %},{% else %};{% endif %}
{%- endif %}
{% endfor %}
private {% if prop.type() === 'string'%}String{% else %}Integer{% endif %} value;
{{propName | camelCase | upperFirst}}Enum ({% if prop.type() === 'string'%}String{% else %}Integer{% endif %} v) {
value = v;
}
public {% if prop.type() === 'string'%}String{% else %}Integer{% endif %} value() {
return value;
}
@Override
@JsonValue
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static {{propName | camelCase | upperFirst}}Enum fromValue({% if prop.type() === 'string'%}String{% else %}Integer{% endif %} value) {
for ( {{propName | camelCase | upperFirst}}Enum b : {{propName | camelCase | upperFirst}}Enum.values()) {
if (Objects.equals(b.value, value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
private @Valid {{propName | camelCase | upperFirst}}Enum {{propName | camelCase}};
{%- elif prop.anyOf() or prop.oneOf() %}
{%- set propType = 'OneOf' %}{%- set hasPrimitive = false %}
{%- for obj in prop.anyOf() %}
{%- set hasPrimitive = hasPrimitive or obj.type() !== 'object' %}
{%- set propType = propType + obj.uid() | camelCase | upperFirst %}
{%- endfor %}
{%- for obj in prop.oneOf() %}
{%- set hasPrimitive = hasPrimitive or obj.type() !== 'object' %}
{%- set propType = propType + obj.uid() | camelCase | upperFirst %}
{%- endfor %}
{%- if hasPrimitive %}
{%- set propType = 'Object' %}
{%- else %}
public interface {{propType}} {
}
{%- endif %}
private @Valid {{propType}} {{propName | camelCase}};
{%- elif prop.allOf() %}
{%- set allName = 'AllOf' %}
{%- for obj in prop.allOf() %}
{%- set allName = allName + obj.uid() | camelCase | upperFirst %}
{%- endfor %}
public class {{allName}} {
{%- for obj in prop.allOf() %}
{%- set varName = obj.uid() | camelCase %}
{%- set className = obj.uid() | camelCase | upperFirst %}
{%- set propType = obj | defineType(obj.uid()) | safe %}
{%- if obj.type() === 'array' %}
{%- set varName = obj.uid() | camelCase + 'List' %}
{%- endif %}
private @Valid {{propType}} {{varName}};
public {{propType}} get{{className}}() {
return {{varName}};
}
public void set{{className}}({{propType}} {{varName}}) {
this.{{varName}} = {{varName}};
}
{%- endfor %}
}
private @Valid {{allName}} {{propName | camelCase}};
{%- else %}
{%- if prop.format() %}
private @Valid {{prop.format() | toJavaType(isRequired)}} {{propName | camelCase}};
{%- else %}
private @Valid {{prop.type() | toJavaType(isRequired)}} {{propName | camelCase}};
{%- endif %}
{%- endif %}
{% endfor %}
{% for propName, prop in schema.properties() %}
{%- set varName = propName | camelCase %}
{%- set className = propName | camelCase | upperFirst %}
{%- set propType = prop | defineType(propName) | safe %}
{%- if prop.type() === 'array' %}
{%- set varName = propName | camelCase + 'List' %}
{%- endif %}
{% if prop.description() or prop.examples()%}/**{% for line in prop.description() | splitByLines %}
* {{ line | safe}}{% endfor %}{% if prop.examples() %}
* Examples: {{prop.examples() | examplesToString | safe}}{% endif %}
*/{% endif %}
@JsonProperty("{{propName}}")
{%- if propName | isRequired(schema.required()) %}@NotNull{% endif %}
{%- if prop.minLength() or prop.maxLength() or prop.maxItems() or prop.minItems() %}@Size({% if prop.minLength() or prop.minItems() %}min = {{prop.minLength()}}{{prop.minItems()}}{% endif %}{% if prop.maxLength() or prop.maxItems() %}{% if prop.minLength() or prop.minItems() %},{% endif %}max = {{prop.maxLength()}}{{prop.maxItems()}}{% endif %}){% endif %}
{%- if prop.pattern() %}@Pattern(regexp="{{prop.pattern() | addBackSlashToPattern}}"){% endif %}
{%- if prop.minimum() %}@Min({{prop.minimum()}}){% endif %}{% if prop.exclusiveMinimum() %}@Min({{prop.exclusiveMinimum() + 1}}){% endif %}
{%- if prop.maximum() %}@Max({{prop.maximum()}}){% endif %}{% if prop.exclusiveMaximum() %}@Max({{prop.exclusiveMaximum() + 1}}){% endif %}
public {{propType}} get{{className}}() {
return {{varName}};
}
public void set{{className}}({{propType}} {{varName}}) {
this.{{varName}} = {{varName}};
}
{% endfor %}
{% if params.disableEqualsHashCode === 'false' %}@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
{{schemaName | camelCase | upperFirst}} {{schemaName | camelCase}} = ({{schemaName | camelCase | upperFirst}}) o;
return {% for propName, prop in schema.properties() %}{% set varName = propName | camelCase %}{% if prop.type() === 'array' %}{% set varName = propName | camelCase + 'List' %}{% endif %}
Objects.equals(this.{{varName}}, {{schemaName | camelCase}}.{{varName}}){% if not loop.last %} &&{% else %};{% endif %}{% endfor %}
}
@Override
public int hashCode() {
return Objects.hash({% for propName, prop in schema.properties() %}{{propName | camelCase}}{% if prop.type() === 'array' %}List{% endif %}{% if not loop.last %}, {% endif %}{% endfor %});
}{% endif %}
@Override
public String toString() {
return "class {{schemaName | camelCase | upperFirst}} {\n" +
{% for propName, prop in schema.properties() %}{% set varName = propName | camelCase %}{% if prop.type() === 'array' %}{% set varName = propName | camelCase + 'List' %}{% endif %}
" {{varName}}: " + toIndentedString({{varName}}) + "\n" +{% endfor %}
"}";
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}