Skip to content

Commit 5dd05b3

Browse files
Update formatting of non-singleRequestParameter webclient and restclient samples
1 parent b1ea10a commit 5dd05b3

File tree

35 files changed

+99
-23
lines changed

35 files changed

+99
-23
lines changed

samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/api/AuthApi.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ public ResponseEntity<String> testAuthHttpBasicWithHttpInfo() throws RestClientR
107107
public ResponseSpec testAuthHttpBasicWithResponseSpec() throws RestClientResponseException {
108108
return testAuthHttpBasicRequestCreation();
109109
}
110+
110111
/**
111112
* To test HTTP bearer authentication
112113
* To test HTTP bearer authentication

samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/api/BodyApi.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ public ResponseEntity<File> testBinaryGifWithHttpInfo() throws RestClientRespons
111111
public ResponseSpec testBinaryGifWithResponseSpec() throws RestClientResponseException {
112112
return testBinaryGifRequestCreation();
113113
}
114+
114115
/**
115116
* Test body parameter(s)
116117
* Test body parameter(s)
@@ -181,6 +182,7 @@ public ResponseEntity<String> testBodyApplicationOctetstreamBinaryWithHttpInfo(@
181182
public ResponseSpec testBodyApplicationOctetstreamBinaryWithResponseSpec(@jakarta.annotation.Nullable File body) throws RestClientResponseException {
182183
return testBodyApplicationOctetstreamBinaryRequestCreation(body);
183184
}
185+
184186
/**
185187
* Test array of binary in multipart mime
186188
* Test array of binary in multipart mime
@@ -258,6 +260,7 @@ public ResponseEntity<String> testBodyMultipartFormdataArrayOfBinaryWithHttpInfo
258260
public ResponseSpec testBodyMultipartFormdataArrayOfBinaryWithResponseSpec(@jakarta.annotation.Nonnull List<File> files) throws RestClientResponseException {
259261
return testBodyMultipartFormdataArrayOfBinaryRequestCreation(files);
260262
}
263+
261264
/**
262265
* Test single binary in multipart mime
263266
* Test single binary in multipart mime
@@ -331,6 +334,7 @@ public ResponseEntity<String> testBodyMultipartFormdataSingleBinaryWithHttpInfo(
331334
public ResponseSpec testBodyMultipartFormdataSingleBinaryWithResponseSpec(@jakarta.annotation.Nullable File myFile) throws RestClientResponseException {
332335
return testBodyMultipartFormdataSingleBinaryRequestCreation(myFile);
333336
}
337+
334338
/**
335339
* Test body parameter(s)
336340
* Test body parameter(s)
@@ -401,6 +405,7 @@ public ResponseEntity<Pet> testEchoBodyAllOfPetWithHttpInfo(@jakarta.annotation.
401405
public ResponseSpec testEchoBodyAllOfPetWithResponseSpec(@jakarta.annotation.Nullable Pet pet) throws RestClientResponseException {
402406
return testEchoBodyAllOfPetRequestCreation(pet);
403407
}
408+
404409
/**
405410
* Test free form object
406411
* Test free form object
@@ -471,6 +476,7 @@ public ResponseEntity<String> testEchoBodyFreeFormObjectResponseStringWithHttpIn
471476
public ResponseSpec testEchoBodyFreeFormObjectResponseStringWithResponseSpec(@jakarta.annotation.Nullable Object body) throws RestClientResponseException {
472477
return testEchoBodyFreeFormObjectResponseStringRequestCreation(body);
473478
}
479+
474480
/**
475481
* Test body parameter(s)
476482
* Test body parameter(s)
@@ -541,6 +547,7 @@ public ResponseEntity<Pet> testEchoBodyPetWithHttpInfo(@jakarta.annotation.Nulla
541547
public ResponseSpec testEchoBodyPetWithResponseSpec(@jakarta.annotation.Nullable Pet pet) throws RestClientResponseException {
542548
return testEchoBodyPetRequestCreation(pet);
543549
}
550+
544551
/**
545552
* Test empty response body
546553
* Test empty response body
@@ -611,6 +618,7 @@ public ResponseEntity<String> testEchoBodyPetResponseStringWithHttpInfo(@jakarta
611618
public ResponseSpec testEchoBodyPetResponseStringWithResponseSpec(@jakarta.annotation.Nullable Pet pet) throws RestClientResponseException {
612619
return testEchoBodyPetResponseStringRequestCreation(pet);
613620
}
621+
614622
/**
615623
* Test string enum response body
616624
* Test string enum response body
@@ -681,6 +689,7 @@ public ResponseEntity<StringEnumRef> testEchoBodyStringEnumWithHttpInfo(@jakarta
681689
public ResponseSpec testEchoBodyStringEnumWithResponseSpec(@jakarta.annotation.Nullable String body) throws RestClientResponseException {
682690
return testEchoBodyStringEnumRequestCreation(body);
683691
}
692+
684693
/**
685694
* Test empty json (request body)
686695
* Test empty json (request body)

samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/api/FormApi.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ public ResponseEntity<String> testFormIntegerBooleanStringWithHttpInfo(@jakarta.
129129
public ResponseSpec testFormIntegerBooleanStringWithResponseSpec(@jakarta.annotation.Nullable Integer integerForm, @jakarta.annotation.Nullable Boolean booleanForm, @jakarta.annotation.Nullable String stringForm) throws RestClientResponseException {
130130
return testFormIntegerBooleanStringRequestCreation(integerForm, booleanForm, stringForm);
131131
}
132+
132133
/**
133134
* Test form parameter(s) for multipart schema
134135
* Test form parameter(s) for multipart schema
@@ -206,6 +207,7 @@ public ResponseEntity<String> testFormObjectMultipartWithHttpInfo(@jakarta.annot
206207
public ResponseSpec testFormObjectMultipartWithResponseSpec(@jakarta.annotation.Nonnull TestFormObjectMultipartRequestMarker marker) throws RestClientResponseException {
207208
return testFormObjectMultipartRequestCreation(marker);
208209
}
210+
209211
/**
210212
* Test form parameter(s) for oneOf schema
211213
* Test form parameter(s) for oneOf schema

samples/client/echo_api/java/restclient/src/main/java/org/openapitools/client/api/QueryApi.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ public ResponseEntity<String> testEnumRefStringWithHttpInfo(@jakarta.annotation.
125125
public ResponseSpec testEnumRefStringWithResponseSpec(@jakarta.annotation.Nullable String enumNonrefStringQuery, @jakarta.annotation.Nullable StringEnumRef enumRefStringQuery) throws RestClientResponseException {
126126
return testEnumRefStringRequestCreation(enumNonrefStringQuery, enumRefStringQuery);
127127
}
128+
128129
/**
129130
* Test query parameter(s)
130131
* Test query parameter(s)
@@ -205,6 +206,7 @@ public ResponseEntity<String> testQueryDatetimeDateStringWithHttpInfo(@jakarta.a
205206
public ResponseSpec testQueryDatetimeDateStringWithResponseSpec(@jakarta.annotation.Nullable Instant datetimeQuery, @jakarta.annotation.Nullable LocalDate dateQuery, @jakarta.annotation.Nullable String stringQuery) throws RestClientResponseException {
206207
return testQueryDatetimeDateStringRequestCreation(datetimeQuery, dateQuery, stringQuery);
207208
}
209+
208210
/**
209211
* Test query parameter(s)
210212
* Test query parameter(s)
@@ -285,6 +287,7 @@ public ResponseEntity<String> testQueryIntegerBooleanStringWithHttpInfo(@jakarta
285287
public ResponseSpec testQueryIntegerBooleanStringWithResponseSpec(@jakarta.annotation.Nullable Integer integerQuery, @jakarta.annotation.Nullable Boolean booleanQuery, @jakarta.annotation.Nullable String stringQuery) throws RestClientResponseException {
286288
return testQueryIntegerBooleanStringRequestCreation(integerQuery, booleanQuery, stringQuery);
287289
}
290+
288291
/**
289292
* Test query parameter(s)
290293
* Test query parameter(s)
@@ -360,6 +363,7 @@ public ResponseEntity<String> testQueryStyleDeepObjectExplodeTrueObjectWithHttpI
360363
public ResponseSpec testQueryStyleDeepObjectExplodeTrueObjectWithResponseSpec(@jakarta.annotation.Nullable Pet queryObject) throws RestClientResponseException {
361364
return testQueryStyleDeepObjectExplodeTrueObjectRequestCreation(queryObject);
362365
}
366+
363367
/**
364368
* Test query parameter(s)
365369
* Test query parameter(s)
@@ -430,6 +434,7 @@ public ResponseEntity<String> testQueryStyleDeepObjectExplodeTrueObjectAllOfWith
430434
public ResponseSpec testQueryStyleDeepObjectExplodeTrueObjectAllOfWithResponseSpec(@jakarta.annotation.Nullable TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter queryObject) throws RestClientResponseException {
431435
return testQueryStyleDeepObjectExplodeTrueObjectAllOfRequestCreation(queryObject);
432436
}
437+
433438
/**
434439
* Test query parameter(s)
435440
* Test query parameter(s)
@@ -500,6 +505,7 @@ public ResponseEntity<String> testQueryStyleFormExplodeFalseArrayIntegerWithHttp
500505
public ResponseSpec testQueryStyleFormExplodeFalseArrayIntegerWithResponseSpec(@jakarta.annotation.Nullable List<Integer> queryObject) throws RestClientResponseException {
501506
return testQueryStyleFormExplodeFalseArrayIntegerRequestCreation(queryObject);
502507
}
508+
503509
/**
504510
* Test query parameter(s)
505511
* Test query parameter(s)
@@ -570,6 +576,7 @@ public ResponseEntity<String> testQueryStyleFormExplodeFalseArrayStringWithHttpI
570576
public ResponseSpec testQueryStyleFormExplodeFalseArrayStringWithResponseSpec(@jakarta.annotation.Nullable List<String> queryObject) throws RestClientResponseException {
571577
return testQueryStyleFormExplodeFalseArrayStringRequestCreation(queryObject);
572578
}
579+
573580
/**
574581
* Test query parameter(s)
575582
* Test query parameter(s)
@@ -640,6 +647,7 @@ public ResponseEntity<String> testQueryStyleFormExplodeTrueArrayStringWithHttpIn
640647
public ResponseSpec testQueryStyleFormExplodeTrueArrayStringWithResponseSpec(@jakarta.annotation.Nullable TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter queryObject) throws RestClientResponseException {
641648
return testQueryStyleFormExplodeTrueArrayStringRequestCreation(queryObject);
642649
}
650+
643651
/**
644652
* Test query parameter(s)
645653
* Test query parameter(s)
@@ -715,6 +723,7 @@ public ResponseEntity<String> testQueryStyleFormExplodeTrueObjectWithHttpInfo(@j
715723
public ResponseSpec testQueryStyleFormExplodeTrueObjectWithResponseSpec(@jakarta.annotation.Nullable Pet queryObject) throws RestClientResponseException {
716724
return testQueryStyleFormExplodeTrueObjectRequestCreation(queryObject);
717725
}
726+
718727
/**
719728
* Test query parameter(s)
720729
* Test query parameter(s)

samples/client/others/java/webclient-useAbstractionForFiles/src/main/java/org/openapitools/client/api/ResourceApi.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public void setApiClient(ApiClient apiClient) {
4646
this.apiClient = apiClient;
4747
}
4848

49-
5049
/**
5150
*
5251
* Response file abstraction

samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/api/FakeApi.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ public ResponseEntity<FakeBigDecimalMap200Response> fakeBigDecimalMapWithHttpInf
122122
public ResponseSpec fakeBigDecimalMapWithResponseSpec() throws RestClientResponseException {
123123
return fakeBigDecimalMapRequestCreation();
124124
}
125+
125126
/**
126127
* Health check endpoint
127128
*
@@ -186,6 +187,7 @@ public ResponseEntity<HealthCheckResult> fakeHealthGetWithHttpInfo() throws Rest
186187
public ResponseSpec fakeHealthGetWithResponseSpec() throws RestClientResponseException {
187188
return fakeHealthGetRequestCreation();
188189
}
190+
189191
/**
190192
* test http signature authentication
191193
*
@@ -268,6 +270,7 @@ public ResponseEntity<Void> fakeHttpSignatureTestWithHttpInfo(@jakarta.annotatio
268270
public ResponseSpec fakeHttpSignatureTestWithResponseSpec(@jakarta.annotation.Nonnull Pet pet, @jakarta.annotation.Nullable String query1, @jakarta.annotation.Nullable String header1) throws RestClientResponseException {
269271
return fakeHttpSignatureTestRequestCreation(pet, query1, header1);
270272
}
273+
271274
/**
272275
*
273276
* Test serialization of outer boolean types
@@ -338,6 +341,7 @@ public ResponseEntity<Boolean> fakeOuterBooleanSerializeWithHttpInfo(@jakarta.an
338341
public ResponseSpec fakeOuterBooleanSerializeWithResponseSpec(@jakarta.annotation.Nullable Boolean body) throws RestClientResponseException {
339342
return fakeOuterBooleanSerializeRequestCreation(body);
340343
}
344+
341345
/**
342346
*
343347
* Test serialization of object with outer number type
@@ -408,6 +412,7 @@ public ResponseEntity<OuterComposite> fakeOuterCompositeSerializeWithHttpInfo(@j
408412
public ResponseSpec fakeOuterCompositeSerializeWithResponseSpec(@jakarta.annotation.Nullable OuterComposite outerComposite) throws RestClientResponseException {
409413
return fakeOuterCompositeSerializeRequestCreation(outerComposite);
410414
}
415+
411416
/**
412417
*
413418
* Test serialization of outer number types
@@ -478,6 +483,7 @@ public ResponseEntity<BigDecimal> fakeOuterNumberSerializeWithHttpInfo(@jakarta.
478483
public ResponseSpec fakeOuterNumberSerializeWithResponseSpec(@jakarta.annotation.Nullable BigDecimal body) throws RestClientResponseException {
479484
return fakeOuterNumberSerializeRequestCreation(body);
480485
}
486+
481487
/**
482488
*
483489
* Test serialization of outer string types
@@ -548,6 +554,7 @@ public ResponseEntity<String> fakeOuterStringSerializeWithHttpInfo(@jakarta.anno
548554
public ResponseSpec fakeOuterStringSerializeWithResponseSpec(@jakarta.annotation.Nullable String body) throws RestClientResponseException {
549555
return fakeOuterStringSerializeRequestCreation(body);
550556
}
557+
551558
/**
552559
*
553560
* Test serialization of enum (int) properties with examples
@@ -622,6 +629,7 @@ public ResponseEntity<OuterObjectWithEnumProperty> fakePropertyEnumIntegerSerial
622629
public ResponseSpec fakePropertyEnumIntegerSerializeWithResponseSpec(@jakarta.annotation.Nonnull OuterObjectWithEnumProperty outerObjectWithEnumProperty) throws RestClientResponseException {
623630
return fakePropertyEnumIntegerSerializeRequestCreation(outerObjectWithEnumProperty);
624631
}
632+
625633
/**
626634
* test referenced additionalProperties
627635
*
@@ -691,6 +699,7 @@ public ResponseEntity<Void> testAdditionalPropertiesReferenceWithHttpInfo(@jakar
691699
public ResponseSpec testAdditionalPropertiesReferenceWithResponseSpec(@jakarta.annotation.Nonnull Map<String, Object> requestBody) throws RestClientResponseException {
692700
return testAdditionalPropertiesReferenceRequestCreation(requestBody);
693701
}
702+
694703
/**
695704
*
696705
* For this test, the body has to be a binary file.
@@ -760,6 +769,7 @@ public ResponseEntity<Void> testBodyWithBinaryWithHttpInfo(@jakarta.annotation.N
760769
public ResponseSpec testBodyWithBinaryWithResponseSpec(@jakarta.annotation.Nullable File body) throws RestClientResponseException {
761770
return testBodyWithBinaryRequestCreation(body);
762771
}
772+
763773
/**
764774
*
765775
* For this test, the body for this request must reference a schema named &#x60;File&#x60;.
@@ -829,6 +839,7 @@ public ResponseEntity<Void> testBodyWithFileSchemaWithHttpInfo(@jakarta.annotati
829839
public ResponseSpec testBodyWithFileSchemaWithResponseSpec(@jakarta.annotation.Nonnull FileSchemaTestClass fileSchemaTestClass) throws RestClientResponseException {
830840
return testBodyWithFileSchemaRequestCreation(fileSchemaTestClass);
831841
}
842+
832843
/**
833844
*
834845
*
@@ -908,6 +919,7 @@ public ResponseEntity<Void> testBodyWithQueryParamsWithHttpInfo(@jakarta.annotat
908919
public ResponseSpec testBodyWithQueryParamsWithResponseSpec(@jakarta.annotation.Nonnull String query, @jakarta.annotation.Nonnull User user) throws RestClientResponseException {
909920
return testBodyWithQueryParamsRequestCreation(query, user);
910921
}
922+
911923
/**
912924
* To test \&quot;client\&quot; model
913925
* To test \&quot;client\&quot; model
@@ -982,6 +994,7 @@ public ResponseEntity<Client> testClientModelWithHttpInfo(@jakarta.annotation.No
982994
public ResponseSpec testClientModelWithResponseSpec(@jakarta.annotation.Nonnull Client client) throws RestClientResponseException {
983995
return testClientModelRequestCreation(client);
984996
}
997+
985998
/**
986999
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
9871000
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
@@ -1148,6 +1161,7 @@ public ResponseEntity<Void> testEndpointParametersWithHttpInfo(@jakarta.annotati
11481161
public ResponseSpec testEndpointParametersWithResponseSpec(@jakarta.annotation.Nonnull BigDecimal number, @jakarta.annotation.Nonnull Double _double, @jakarta.annotation.Nonnull String patternWithoutDelimiter, @jakarta.annotation.Nonnull byte[] _byte, @jakarta.annotation.Nullable Integer integer, @jakarta.annotation.Nullable Integer int32, @jakarta.annotation.Nullable Long int64, @jakarta.annotation.Nullable Float _float, @jakarta.annotation.Nullable String string, @jakarta.annotation.Nullable File binary, @jakarta.annotation.Nullable LocalDate date, @jakarta.annotation.Nullable OffsetDateTime dateTime, @jakarta.annotation.Nullable String password, @jakarta.annotation.Nullable String paramCallback) throws RestClientResponseException {
11491162
return testEndpointParametersRequestCreation(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback);
11501163
}
1164+
11511165
/**
11521166
* To test enum parameters
11531167
* To test enum parameters
@@ -1265,6 +1279,7 @@ public ResponseEntity<Void> testEnumParametersWithHttpInfo(@jakarta.annotation.N
12651279
public ResponseSpec testEnumParametersWithResponseSpec(@jakarta.annotation.Nullable List<String> enumHeaderStringArray, @jakarta.annotation.Nullable String enumHeaderString, @jakarta.annotation.Nullable List<String> enumQueryStringArray, @jakarta.annotation.Nullable String enumQueryString, @jakarta.annotation.Nullable Integer enumQueryInteger, @jakarta.annotation.Nullable Double enumQueryDouble, @jakarta.annotation.Nullable List<EnumClass> enumQueryModelArray, @jakarta.annotation.Nullable List<String> enumFormStringArray, @jakarta.annotation.Nullable String enumFormString) throws RestClientResponseException {
12661280
return testEnumParametersRequestCreation(enumHeaderStringArray, enumHeaderString, enumQueryStringArray, enumQueryString, enumQueryInteger, enumQueryDouble, enumQueryModelArray, enumFormStringArray, enumFormString);
12671281
}
1282+
12681283
/**
12691284
* Fake endpoint to test group parameters (optional)
12701285
* Fake endpoint to test group parameters (optional)
@@ -1370,6 +1385,7 @@ public ResponseEntity<Void> testGroupParametersWithHttpInfo(@jakarta.annotation.
13701385
public ResponseSpec testGroupParametersWithResponseSpec(@jakarta.annotation.Nonnull Integer requiredStringGroup, @jakarta.annotation.Nonnull Boolean requiredBooleanGroup, @jakarta.annotation.Nonnull Long requiredInt64Group, @jakarta.annotation.Nullable Integer stringGroup, @jakarta.annotation.Nullable Boolean booleanGroup, @jakarta.annotation.Nullable Long int64Group) throws RestClientResponseException {
13711386
return testGroupParametersRequestCreation(requiredStringGroup, requiredBooleanGroup, requiredInt64Group, stringGroup, booleanGroup, int64Group);
13721387
}
1388+
13731389
/**
13741390
* test inline additionalProperties
13751391
*
@@ -1439,6 +1455,7 @@ public ResponseEntity<Void> testInlineAdditionalPropertiesWithHttpInfo(@jakarta.
14391455
public ResponseSpec testInlineAdditionalPropertiesWithResponseSpec(@jakarta.annotation.Nonnull Map<String, String> requestBody) throws RestClientResponseException {
14401456
return testInlineAdditionalPropertiesRequestCreation(requestBody);
14411457
}
1458+
14421459
/**
14431460
* test inline free-form additionalProperties
14441461
*
@@ -1508,6 +1525,7 @@ public ResponseEntity<Void> testInlineFreeformAdditionalPropertiesWithHttpInfo(@
15081525
public ResponseSpec testInlineFreeformAdditionalPropertiesWithResponseSpec(@jakarta.annotation.Nonnull TestInlineFreeformAdditionalPropertiesRequest testInlineFreeformAdditionalPropertiesRequest) throws RestClientResponseException {
15091526
return testInlineFreeformAdditionalPropertiesRequestCreation(testInlineFreeformAdditionalPropertiesRequest);
15101527
}
1528+
15111529
/**
15121530
* test json serialization of form data
15131531
*
@@ -1590,6 +1608,7 @@ public ResponseEntity<Void> testJsonFormDataWithHttpInfo(@jakarta.annotation.Non
15901608
public ResponseSpec testJsonFormDataWithResponseSpec(@jakarta.annotation.Nonnull String param, @jakarta.annotation.Nonnull String param2) throws RestClientResponseException {
15911609
return testJsonFormDataRequestCreation(param, param2);
15921610
}
1611+
15931612
/**
15941613
* test nullable parent property
15951614
*
@@ -1659,6 +1678,7 @@ public ResponseEntity<Void> testNullableWithHttpInfo(@jakarta.annotation.Nonnull
16591678
public ResponseSpec testNullableWithResponseSpec(@jakarta.annotation.Nonnull ChildWithNullable childWithNullable) throws RestClientResponseException {
16601679
return testNullableRequestCreation(childWithNullable);
16611680
}
1681+
16621682
/**
16631683
*
16641684
* To test the collection format in query parameters
@@ -1778,6 +1798,7 @@ public ResponseEntity<Void> testQueryParameterCollectionFormatWithHttpInfo(@jaka
17781798
public ResponseSpec testQueryParameterCollectionFormatWithResponseSpec(@jakarta.annotation.Nonnull List<String> pipe, @jakarta.annotation.Nonnull List<String> ioutil, @jakarta.annotation.Nonnull List<String> http, @jakarta.annotation.Nonnull List<String> url, @jakarta.annotation.Nonnull List<String> context, @jakarta.annotation.Nonnull String allowEmpty, @jakarta.annotation.Nullable Map<String, String> language) throws RestClientResponseException {
17791799
return testQueryParameterCollectionFormatRequestCreation(pipe, ioutil, http, url, context, allowEmpty, language);
17801800
}
1801+
17811802
/**
17821803
* test referenced string map
17831804
*

0 commit comments

Comments
 (0)