Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit cf0974e

Browse files
committed
Updates comeponent schema class names
1 parent e754af9 commit cf0974e

File tree

477 files changed

+57090
-1748
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

477 files changed

+57090
-1748
lines changed

samples/client/petstore/java/.openapi-generator/FILES

+176-176
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# Application1jsonSchema
2+
public class Application1jsonSchema
3+
4+
A class that contains necessary nested
5+
- schema classes (which validate payloads), extends JsonSchema
6+
- abstract sealed classes which store validated payloads, java version of a sum type
7+
- boxed classes which store validated payloads, sealed permits class implementations
8+
9+
## Nested Class Summary
10+
| Modifier and Type | Class and Description |
11+
| ----------------- | ---------------------- |
12+
| static class | [Application1jsonSchema.Application1jsonSchema1Boxed](#application1jsonschema1boxed)<br> abstract sealed validated payload class |
13+
| static class | [Application1jsonSchema.Application1jsonSchema1BoxedVoid](#application1jsonschema1boxedvoid)<br> boxed class to store validated null payloads |
14+
| static class | [Application1jsonSchema.Application1jsonSchema1BoxedBoolean](#application1jsonschema1boxedboolean)<br> boxed class to store validated boolean payloads |
15+
| static class | [Application1jsonSchema.Application1jsonSchema1BoxedNumber](#application1jsonschema1boxednumber)<br> boxed class to store validated Number payloads |
16+
| static class | [Application1jsonSchema.Application1jsonSchema1BoxedString](#application1jsonschema1boxedstring)<br> boxed class to store validated String payloads |
17+
| static class | [Application1jsonSchema.Application1jsonSchema1BoxedList](#application1jsonschema1boxedlist)<br> boxed class to store validated List payloads |
18+
| static class | [Application1jsonSchema.Application1jsonSchema1BoxedMap](#application1jsonschema1boxedmap)<br> boxed class to store validated Map payloads |
19+
| static class | [Application1jsonSchema.Application1jsonSchema1](#application1jsonschema1)<br> schema class |
20+
21+
## Application1jsonSchema1Boxed
22+
public static abstract sealed class Application1jsonSchema1Boxed<br>
23+
permits<br>
24+
[Application1jsonSchema1BoxedVoid](#application1jsonschema1boxedvoid),
25+
[Application1jsonSchema1BoxedBoolean](#application1jsonschema1boxedboolean),
26+
[Application1jsonSchema1BoxedNumber](#application1jsonschema1boxednumber),
27+
[Application1jsonSchema1BoxedString](#application1jsonschema1boxedstring),
28+
[Application1jsonSchema1BoxedList](#application1jsonschema1boxedlist),
29+
[Application1jsonSchema1BoxedMap](#application1jsonschema1boxedmap)
30+
31+
abstract sealed class that stores validated payloads using boxed classes
32+
33+
## Application1jsonSchema1BoxedVoid
34+
public static final class Application1jsonSchema1BoxedVoid<br>
35+
extends [Application1jsonSchema1Boxed](#application1jsonschema1boxed)
36+
37+
a boxed class to store validated null payloads, sealed permits class implementation
38+
39+
### Constructor Summary
40+
| Constructor and Description |
41+
| --------------------------- |
42+
| Application1jsonSchema1BoxedVoid(Void data)<br>Creates an instance, private visibility |
43+
44+
### Field Summary
45+
| Modifier and Type | Field and Description |
46+
| ----------------- | ---------------------- |
47+
| Void | data<br>validated payload |
48+
49+
## Application1jsonSchema1BoxedBoolean
50+
public static final class Application1jsonSchema1BoxedBoolean<br>
51+
extends [Application1jsonSchema1Boxed](#application1jsonschema1boxed)
52+
53+
a boxed class to store validated boolean payloads, sealed permits class implementation
54+
55+
### Constructor Summary
56+
| Constructor and Description |
57+
| --------------------------- |
58+
| Application1jsonSchema1BoxedBoolean(boolean data)<br>Creates an instance, private visibility |
59+
60+
### Field Summary
61+
| Modifier and Type | Field and Description |
62+
| ----------------- | ---------------------- |
63+
| boolean | data<br>validated payload |
64+
65+
## Application1jsonSchema1BoxedNumber
66+
public static final class Application1jsonSchema1BoxedNumber<br>
67+
extends [Application1jsonSchema1Boxed](#application1jsonschema1boxed)
68+
69+
a boxed class to store validated Number payloads, sealed permits class implementation
70+
71+
### Constructor Summary
72+
| Constructor and Description |
73+
| --------------------------- |
74+
| Application1jsonSchema1BoxedNumber(Number data)<br>Creates an instance, private visibility |
75+
76+
### Field Summary
77+
| Modifier and Type | Field and Description |
78+
| ----------------- | ---------------------- |
79+
| Number | data<br>validated payload |
80+
81+
## Application1jsonSchema1BoxedString
82+
public static final class Application1jsonSchema1BoxedString<br>
83+
extends [Application1jsonSchema1Boxed](#application1jsonschema1boxed)
84+
85+
a boxed class to store validated String payloads, sealed permits class implementation
86+
87+
### Constructor Summary
88+
| Constructor and Description |
89+
| --------------------------- |
90+
| Application1jsonSchema1BoxedString(String data)<br>Creates an instance, private visibility |
91+
92+
### Field Summary
93+
| Modifier and Type | Field and Description |
94+
| ----------------- | ---------------------- |
95+
| String | data<br>validated payload |
96+
97+
## Application1jsonSchema1BoxedList
98+
public static final class Application1jsonSchema1BoxedList<br>
99+
extends [Application1jsonSchema1Boxed](#application1jsonschema1boxed)
100+
101+
a boxed class to store validated List payloads, sealed permits class implementation
102+
103+
### Constructor Summary
104+
| Constructor and Description |
105+
| --------------------------- |
106+
| Application1jsonSchema1BoxedList(FrozenList<@Nullable Object> data)<br>Creates an instance, private visibility |
107+
108+
### Field Summary
109+
| Modifier and Type | Field and Description |
110+
| ----------------- | ---------------------- |
111+
| FrozenList<@Nullable Object> | data<br>validated payload |
112+
113+
## Application1jsonSchema1BoxedMap
114+
public static final class Application1jsonSchema1BoxedMap<br>
115+
extends [Application1jsonSchema1Boxed](#application1jsonschema1boxed)
116+
117+
a boxed class to store validated Map payloads, sealed permits class implementation
118+
119+
### Constructor Summary
120+
| Constructor and Description |
121+
| --------------------------- |
122+
| Application1jsonSchema1BoxedMap(FrozenMap<@Nullable Object> data)<br>Creates an instance, private visibility |
123+
124+
### Field Summary
125+
| Modifier and Type | Field and Description |
126+
| ----------------- | ---------------------- |
127+
| FrozenMap<@Nullable Object> | data<br>validated payload |
128+
129+
## Application1jsonSchema1
130+
public static class Application1jsonSchema1<br>
131+
extends [StringWithValidation.StringWithValidation1](../../../../../components/schemas/StringWithValidation.md#stringwithvalidation1)
132+
133+
A schema class that validates payloads
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# ApplicationjsonSchema
2+
public class ApplicationjsonSchema
3+
4+
A class that contains necessary nested
5+
- schema classes (which validate payloads), extends JsonSchema
6+
- abstract sealed classes which store validated payloads, java version of a sum type
7+
- boxed classes which store validated payloads, sealed permits class implementations
8+
9+
## Nested Class Summary
10+
| Modifier and Type | Class and Description |
11+
| ----------------- | ---------------------- |
12+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1Boxed](#applicationjsonschema1boxed)<br> abstract sealed validated payload class |
13+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1BoxedVoid](#applicationjsonschema1boxedvoid)<br> boxed class to store validated null payloads |
14+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1BoxedBoolean](#applicationjsonschema1boxedboolean)<br> boxed class to store validated boolean payloads |
15+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1BoxedNumber](#applicationjsonschema1boxednumber)<br> boxed class to store validated Number payloads |
16+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1BoxedString](#applicationjsonschema1boxedstring)<br> boxed class to store validated String payloads |
17+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1BoxedList](#applicationjsonschema1boxedlist)<br> boxed class to store validated List payloads |
18+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1BoxedMap](#applicationjsonschema1boxedmap)<br> boxed class to store validated Map payloads |
19+
| static class | [ApplicationjsonSchema.ApplicationjsonSchema1](#applicationjsonschema1)<br> schema class |
20+
21+
## ApplicationjsonSchema1Boxed
22+
public static abstract sealed class ApplicationjsonSchema1Boxed<br>
23+
permits<br>
24+
[ApplicationjsonSchema1BoxedVoid](#applicationjsonschema1boxedvoid),
25+
[ApplicationjsonSchema1BoxedBoolean](#applicationjsonschema1boxedboolean),
26+
[ApplicationjsonSchema1BoxedNumber](#applicationjsonschema1boxednumber),
27+
[ApplicationjsonSchema1BoxedString](#applicationjsonschema1boxedstring),
28+
[ApplicationjsonSchema1BoxedList](#applicationjsonschema1boxedlist),
29+
[ApplicationjsonSchema1BoxedMap](#applicationjsonschema1boxedmap)
30+
31+
abstract sealed class that stores validated payloads using boxed classes
32+
33+
## ApplicationjsonSchema1BoxedVoid
34+
public static final class ApplicationjsonSchema1BoxedVoid<br>
35+
extends [ApplicationjsonSchema1Boxed](#applicationjsonschema1boxed)
36+
37+
a boxed class to store validated null payloads, sealed permits class implementation
38+
39+
### Constructor Summary
40+
| Constructor and Description |
41+
| --------------------------- |
42+
| ApplicationjsonSchema1BoxedVoid(Void data)<br>Creates an instance, private visibility |
43+
44+
### Field Summary
45+
| Modifier and Type | Field and Description |
46+
| ----------------- | ---------------------- |
47+
| Void | data<br>validated payload |
48+
49+
## ApplicationjsonSchema1BoxedBoolean
50+
public static final class ApplicationjsonSchema1BoxedBoolean<br>
51+
extends [ApplicationjsonSchema1Boxed](#applicationjsonschema1boxed)
52+
53+
a boxed class to store validated boolean payloads, sealed permits class implementation
54+
55+
### Constructor Summary
56+
| Constructor and Description |
57+
| --------------------------- |
58+
| ApplicationjsonSchema1BoxedBoolean(boolean data)<br>Creates an instance, private visibility |
59+
60+
### Field Summary
61+
| Modifier and Type | Field and Description |
62+
| ----------------- | ---------------------- |
63+
| boolean | data<br>validated payload |
64+
65+
## ApplicationjsonSchema1BoxedNumber
66+
public static final class ApplicationjsonSchema1BoxedNumber<br>
67+
extends [ApplicationjsonSchema1Boxed](#applicationjsonschema1boxed)
68+
69+
a boxed class to store validated Number payloads, sealed permits class implementation
70+
71+
### Constructor Summary
72+
| Constructor and Description |
73+
| --------------------------- |
74+
| ApplicationjsonSchema1BoxedNumber(Number data)<br>Creates an instance, private visibility |
75+
76+
### Field Summary
77+
| Modifier and Type | Field and Description |
78+
| ----------------- | ---------------------- |
79+
| Number | data<br>validated payload |
80+
81+
## ApplicationjsonSchema1BoxedString
82+
public static final class ApplicationjsonSchema1BoxedString<br>
83+
extends [ApplicationjsonSchema1Boxed](#applicationjsonschema1boxed)
84+
85+
a boxed class to store validated String payloads, sealed permits class implementation
86+
87+
### Constructor Summary
88+
| Constructor and Description |
89+
| --------------------------- |
90+
| ApplicationjsonSchema1BoxedString(String data)<br>Creates an instance, private visibility |
91+
92+
### Field Summary
93+
| Modifier and Type | Field and Description |
94+
| ----------------- | ---------------------- |
95+
| String | data<br>validated payload |
96+
97+
## ApplicationjsonSchema1BoxedList
98+
public static final class ApplicationjsonSchema1BoxedList<br>
99+
extends [ApplicationjsonSchema1Boxed](#applicationjsonschema1boxed)
100+
101+
a boxed class to store validated List payloads, sealed permits class implementation
102+
103+
### Constructor Summary
104+
| Constructor and Description |
105+
| --------------------------- |
106+
| ApplicationjsonSchema1BoxedList(FrozenList<@Nullable Object> data)<br>Creates an instance, private visibility |
107+
108+
### Field Summary
109+
| Modifier and Type | Field and Description |
110+
| ----------------- | ---------------------- |
111+
| FrozenList<@Nullable Object> | data<br>validated payload |
112+
113+
## ApplicationjsonSchema1BoxedMap
114+
public static final class ApplicationjsonSchema1BoxedMap<br>
115+
extends [ApplicationjsonSchema1Boxed](#applicationjsonschema1boxed)
116+
117+
a boxed class to store validated Map payloads, sealed permits class implementation
118+
119+
### Constructor Summary
120+
| Constructor and Description |
121+
| --------------------------- |
122+
| ApplicationjsonSchema1BoxedMap(FrozenMap<@Nullable Object> data)<br>Creates an instance, private visibility |
123+
124+
### Field Summary
125+
| Modifier and Type | Field and Description |
126+
| ----------------- | ---------------------- |
127+
| FrozenMap<@Nullable Object> | data<br>validated payload |
128+
129+
## ApplicationjsonSchema1
130+
public static class ApplicationjsonSchema1<br>
131+
extends [StringWithValidation.StringWithValidation1](../../../../../components/schemas/StringWithValidation.md#stringwithvalidation1)
132+
133+
A schema class that validates payloads

0 commit comments

Comments
 (0)