Skip to content

Commit 0bbe3e8

Browse files
committed
samples
1 parent f1050be commit 0bbe3e8

File tree

87 files changed

+1068
-25
lines changed

Some content is hidden

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

87 files changed

+1068
-25
lines changed

samples/client/petstore/java-helidon-client/v3/mp/docs/FormatTest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
|**binary** | **File** | | [optional] |
2020
|**date** | **LocalDate** | | |
2121
|**dateTime** | **OffsetDateTime** | | [optional] |
22+
|**duration** | **String** | | |
2223
|**uuid** | **UUID** | | [optional] |
2324
|**password** | **String** | | |
2425
|**patternWithDigits** | **String** | A string that is a 10 digit number. Can have leading zeros. | [optional] |

samples/client/petstore/java-helidon-client/v3/mp/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ public class FormatTest {
5252

5353
private OffsetDateTime dateTime;
5454

55+
private String duration;
56+
5557
private UUID uuid;
5658

5759
private String password;
@@ -316,6 +318,26 @@ public FormatTest dateTime(OffsetDateTime dateTime) {
316318
return this;
317319
}
318320

321+
/**
322+
* Get duration
323+
* @return duration
324+
**/
325+
public String getDuration() {
326+
return duration;
327+
}
328+
329+
/**
330+
* Set duration
331+
**/
332+
public void setDuration(String duration) {
333+
this.duration = duration;
334+
}
335+
336+
public FormatTest duration(String duration) {
337+
this.duration = duration;
338+
return this;
339+
}
340+
319341
/**
320342
* Get uuid
321343
* @return uuid
@@ -417,6 +439,7 @@ public String toString() {
417439
sb.append(" binary: ").append(toIndentedString(binary)).append("\n");
418440
sb.append(" date: ").append(toIndentedString(date)).append("\n");
419441
sb.append(" dateTime: ").append(toIndentedString(dateTime)).append("\n");
442+
sb.append(" duration: ").append(toIndentedString(duration)).append("\n");
420443
sb.append(" uuid: ").append(toIndentedString(uuid)).append("\n");
421444
sb.append(" password: ").append("*").append("\n");
422445
sb.append(" patternWithDigits: ").append(toIndentedString(patternWithDigits)).append("\n");

samples/client/petstore/java-helidon-client/v3/se/docs/FormatTest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
|**binary** | **File** | | [optional] |
2020
|**date** | **LocalDate** | | |
2121
|**dateTime** | **OffsetDateTime** | | [optional] |
22+
|**duration** | **String** | | |
2223
|**uuid** | **UUID** | | [optional] |
2324
|**password** | **String** | | |
2425
|**patternWithDigits** | **String** | A string that is a 10 digit number. Can have leading zeros. | [optional] |

samples/client/petstore/java-helidon-client/v3/se/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ public class FormatTest {
5252

5353
private OffsetDateTime dateTime;
5454

55+
private String duration;
56+
5557
private UUID uuid;
5658

5759
private String password;
@@ -316,6 +318,26 @@ public FormatTest dateTime(OffsetDateTime dateTime) {
316318
return this;
317319
}
318320

321+
/**
322+
* Get duration
323+
* @return duration
324+
**/
325+
public String getDuration() {
326+
return duration;
327+
}
328+
329+
/**
330+
* Set duration
331+
**/
332+
public void setDuration(String duration) {
333+
this.duration = duration;
334+
}
335+
336+
public FormatTest duration(String duration) {
337+
this.duration = duration;
338+
return this;
339+
}
340+
319341
/**
320342
* Get uuid
321343
* @return uuid
@@ -417,6 +439,7 @@ public String toString() {
417439
sb.append(" binary: ").append(toIndentedString(binary)).append("\n");
418440
sb.append(" date: ").append(toIndentedString(date)).append("\n");
419441
sb.append(" dateTime: ").append(toIndentedString(dateTime)).append("\n");
442+
sb.append(" duration: ").append(toIndentedString(duration)).append("\n");
420443
sb.append(" uuid: ").append(toIndentedString(uuid)).append("\n");
421444
sb.append(" password: ").append("*").append("\n");
422445
sb.append(" patternWithDigits: ").append(toIndentedString(patternWithDigits)).append("\n");

samples/client/petstore/java-helidon-client/v4/mp/docs/FormatTest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
|**binary** | **File** | | [optional] |
2020
|**date** | **LocalDate** | | |
2121
|**dateTime** | **OffsetDateTime** | | [optional] |
22+
|**duration** | **String** | | |
2223
|**uuid** | **UUID** | | [optional] |
2324
|**password** | **String** | | |
2425
|**patternWithDigits** | **String** | A string that is a 10 digit number. Can have leading zeros. | [optional] |

samples/client/petstore/java-helidon-client/v4/mp/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ public class FormatTest {
5252

5353
private OffsetDateTime dateTime;
5454

55+
private String duration;
56+
5557
private UUID uuid;
5658

5759
private String password;
@@ -316,6 +318,26 @@ public FormatTest dateTime(OffsetDateTime dateTime) {
316318
return this;
317319
}
318320

321+
/**
322+
* Get duration
323+
* @return duration
324+
**/
325+
public String getDuration() {
326+
return duration;
327+
}
328+
329+
/**
330+
* Set duration
331+
**/
332+
public void setDuration(String duration) {
333+
this.duration = duration;
334+
}
335+
336+
public FormatTest duration(String duration) {
337+
this.duration = duration;
338+
return this;
339+
}
340+
319341
/**
320342
* Get uuid
321343
* @return uuid
@@ -417,6 +439,7 @@ public String toString() {
417439
sb.append(" binary: ").append(toIndentedString(binary)).append("\n");
418440
sb.append(" date: ").append(toIndentedString(date)).append("\n");
419441
sb.append(" dateTime: ").append(toIndentedString(dateTime)).append("\n");
442+
sb.append(" duration: ").append(toIndentedString(duration)).append("\n");
420443
sb.append(" uuid: ").append(toIndentedString(uuid)).append("\n");
421444
sb.append(" password: ").append("*").append("\n");
422445
sb.append(" patternWithDigits: ").append(toIndentedString(patternWithDigits)).append("\n");

samples/client/petstore/java-helidon-client/v4/se/docs/FormatTest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
|**binary** | **File** | | [optional] |
2020
|**date** | **LocalDate** | | |
2121
|**dateTime** | **OffsetDateTime** | | [optional] |
22+
|**duration** | **String** | | |
2223
|**uuid** | **UUID** | | [optional] |
2324
|**password** | **String** | | |
2425
|**patternWithDigits** | **String** | A string that is a 10 digit number. Can have leading zeros. | [optional] |

samples/client/petstore/java-helidon-client/v4/se/src/main/java/org/openapitools/client/model/FormatTest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ public class FormatTest {
5252

5353
private OffsetDateTime dateTime;
5454

55+
private String duration;
56+
5557
private UUID uuid;
5658

5759
private String password;
@@ -316,6 +318,26 @@ public FormatTest dateTime(OffsetDateTime dateTime) {
316318
return this;
317319
}
318320

321+
/**
322+
* Get duration
323+
* @return duration
324+
**/
325+
public String getDuration() {
326+
return duration;
327+
}
328+
329+
/**
330+
* Set duration
331+
**/
332+
public void setDuration(String duration) {
333+
this.duration = duration;
334+
}
335+
336+
public FormatTest duration(String duration) {
337+
this.duration = duration;
338+
return this;
339+
}
340+
319341
/**
320342
* Get uuid
321343
* @return uuid
@@ -417,6 +439,7 @@ public String toString() {
417439
sb.append(" binary: ").append(toIndentedString(binary)).append("\n");
418440
sb.append(" date: ").append(toIndentedString(date)).append("\n");
419441
sb.append(" dateTime: ").append(toIndentedString(dateTime)).append("\n");
442+
sb.append(" duration: ").append(toIndentedString(duration)).append("\n");
420443
sb.append(" uuid: ").append(toIndentedString(uuid)).append("\n");
421444
sb.append(" password: ").append("*").append("\n");
422445
sb.append(" patternWithDigits: ").append(toIndentedString(patternWithDigits)).append("\n");

samples/client/petstore/java/apache-httpclient/api/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1721,6 +1721,9 @@ components:
17211721
dateTime:
17221722
format: date-time
17231723
type: string
1724+
duration:
1725+
format: duration
1726+
type: string
17241727
uuid:
17251728
example: 72f98069-206d-4f12-9f12-3d1e525a8e84
17261729
format: uuid
@@ -1742,6 +1745,7 @@ components:
17421745
required:
17431746
- byte
17441747
- date
1748+
- duration
17451749
- number
17461750
- password
17471751
type: object

samples/client/petstore/java/apache-httpclient/docs/FormatTest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
|**binary** | **File** | | [optional] |
2020
|**date** | **LocalDate** | | |
2121
|**dateTime** | **OffsetDateTime** | | [optional] |
22+
|**duration** | **String** | | |
2223
|**uuid** | **UUID** | | [optional] |
2324
|**password** | **String** | | |
2425
|**patternWithDigits** | **String** | A string that is a 10 digit number. Can have leading zeros. | [optional] |

0 commit comments

Comments
 (0)