You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-15Lines changed: 16 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,21 +72,22 @@ It is RECOMMENDED to not use anonymous objects in payload and components definit
72
72
73
73
### Supported parameters
74
74
75
-
|Name|Description| Required | Default |
76
-
|---|---|----------|--------------------------|
77
-
|disableEqualsHashCode|Disable generation of equals and hashCode methods for model classes.| No | `false` |
78
-
|inverseOperations|Generate an application that will publish messages to `publish` operation of channels and read messages from `subscribe` operation of channels. Literally this flag will simply swap `publish` and `subscribe` operations in the channels. <br> This flag will be useful when you want to generate a code of mock for your main application. Be aware, generation could be incomplete and manual changes will be required e.g. if bindings are defined only for case of main application.| No | `false` |
79
-
|javaPackage|The Java package of the generated classes. Alternatively you can set the specification extension `info.x-java-package`. If both extension and parameter are used, parameter has more priority.| No | `com.asyncapi` |
80
-
|springBoot2|Generate template files for the Spring Boot version 2. For kafka protocol it will also force to use spring-kafka 2.9.9| No | `false` |
|listenerPollTimeout|Only for Kafka. Timeout in ms to use when polling the consumer.| No | `3000` |
83
-
|listenerConcurrency|Only for Kafka. Number of threads to run in the listener containers.| No | `3` |
84
-
|addTypeInfoHeader|Only for Kafka. Add type information to message header.| No | `true` |
85
-
|connectionTimeout|Only for MQTT. This value, measured in seconds, defines the maximum time interval the client will wait for the network connection to the MQTT server to be established. The default timeout is 30 seconds. A value of 0 disables timeout processing meaning the client will wait until the network connection is made successfully or fails.| No | `30` |
86
-
|disconnectionTimeout|Only for MQTT. The completion timeout in milliseconds when disconnecting. The default disconnect completion timeout is 5000 milliseconds.| No | `5000` |
87
-
|completionTimeout|Only for MQTT. The completion timeout in milliseconds for operations. The default completion timeout is 30000 milliseconds.| No | `30000` |
88
-
|mqttClientId| Only for MQTT. Provides the client identifier for the MQTT server. This parameter overrides the value of the clientId if it's set in the AsyncAPI file.If both aren't provided, a default value is set.| No | |
89
-
|asyncapiFileDir| Path where original AsyncAPI file will be stored.| No | `src/main/resources/api/` |
|disableEqualsHashCode| Disable generation of equals and hashCode methods for model classes. | No | `false` |
78
+
|inverseOperations| Generate an application that will publish messages to `publish` operation of channels and read messages from `subscribe` operation of channels. Literally this flag will simply swap `publish` and `subscribe` operations in the channels. <br> This flag will be useful when you want to generate a code of mock for your main application. Be aware, generation could be incomplete and manual changes will be required e.g. if bindings are defined only for case of main application. | No | `false` |
79
+
|javaPackage| The Java package of the generated classes. Alternatively you can set the specification extension `info.x-java-package`. If both extension and parameter are used, parameter has more priority. | No | `com.asyncapi` |
80
+
|springBoot2| Generate template files for the Spring Boot version 2. For kafka protocol it will also force to use spring-kafka 2.9.9 | No | `false` |
|listenerPollTimeout| Only for Kafka. Timeout in ms to use when polling the consumer. | No | `3000` |
83
+
|listenerConcurrency| Only for Kafka. Number of threads to run in the listener containers. | No | `3` |
84
+
|addTypeInfoHeader| Only for Kafka. Add type information to message header. | No | `true` |
85
+
|connectionTimeout| Only for MQTT. This value, measured in seconds, defines the maximum time interval the client will wait for the network connection to the MQTT server to be established. The default timeout is 30 seconds. A value of 0 disables timeout processing meaning the client will wait until the network connection is made successfully or fails. | No | `30` |
86
+
|disconnectionTimeout| Only for MQTT. The completion timeout in milliseconds when disconnecting. The default disconnect completion timeout is 5000 milliseconds. | No | `5000` |
87
+
|completionTimeout| Only for MQTT. The completion timeout in milliseconds for operations. The default completion timeout is 30000 milliseconds. | No | `30000` |
88
+
|mqttClientId| Only for MQTT. Provides the client identifier for the MQTT server. This parameter overrides the value of the clientId if it's set in the AsyncAPI file.If both aren't provided, a default value is set. | No | |
89
+
|asyncapiFileDir| Path where original AsyncAPI file will be stored. | No | `src/main/resources/api/` |
90
+
|generateTimestamp| Adds the generation timestamp to the @Generated annotation. | No | `true` |
0 commit comments