-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#1175): improve random data generation for test data generator
- Loading branch information
Thorsten Schlathoelter
committed
Jul 5, 2024
1 parent
1ce0f75
commit 8ef6181
Showing
51 changed files
with
3,885 additions
and
839 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
connectors/citrus-openapi/src/main/java/org/citrusframework/openapi/OpenApiConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.citrusframework.openapi; | ||
|
||
public abstract class OpenApiConstants { | ||
|
||
public static final String TYPE_ARRAY = "array"; | ||
public static final String TYPE_BOOLEAN = "boolean"; | ||
public static final String TYPE_INTEGER = "integer"; | ||
public static final String TYPE_NUMBER = "number"; | ||
public static final String TYPE_OBJECT = "object"; | ||
public static final String TYPE_STRING = "string"; | ||
|
||
public static final String FORMAT_INT32 = "int32"; | ||
public static final String FORMAT_INT64 = "int64"; | ||
public static final String FORMAT_FLOAT = "float"; | ||
public static final String FORMAT_DOUBLE = "double"; | ||
public static final String FORMAT_DATE = "date"; | ||
public static final String FORMAT_DATE_TIME = "date-time"; | ||
public static final String FORMAT_UUID = "uuid"; | ||
|
||
/** | ||
* Prevent instantiation. | ||
*/ | ||
private OpenApiConstants() { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.