Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new MP OpenAPI warning/info messages #30312

Open
wants to merge 3 commits into
base: integration
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,15 @@ OPENAPI_INFO_INVALID_SERVERXML_CWWKO1683W.useraction=Ensure that the title and v
OPENAPI_MERGE_UNUSED_INCLUDE_SERVERXML_CWWKO1684W=CWWKO1684W: The {0} configuration element includes "{1}" but that does not match any deployed application or web module.
OPENAPI_MERGE_UNUSED_INCLUDE_SERVERXML_CWWKO1684W.explanation=The server is configured to create OpenAPI documentation for the application or module name, but no application or web module with that name was deployed.
OPENAPI_MERGE_UNUSED_INCLUDE_SERVERXML_CWWKO1684W.useraction=Check that all applications started correctly and that the names in the configuration are specified correctly.

OPENAPI_MP_CONFIG_REDUNDANT_CWWKO1685I=CWWKO1685I: The {0} MicroProfile Config property is ignored because equivalent configuration is provided in the server.xml file.
OPENAPI_MP_CONFIG_REDUNDANT_CWWKO1685I.explanation=When this property is set and the same function is configured by using the server.xml file, the configuration in the server.xml file is used and the MicroProfile Config property is ignored.
OPENAPI_MP_CONFIG_REDUNDANT_CWWKO1685I.useraction=Remove the MicroProfile Config property.

OPENAPI_MP_CONFIG_CONFLICTS_CWWKO1686W=CWWKO1686W: The {0} MicroProfile Config property is ignored because conflicting configuration is provided in the server.xml file.
OPENAPI_MP_CONFIG_CONFLICTS_CWWKO1686W.explanation=When this property is set and the same function is configured by using the server.xml file, the configuration in the server.xml file is used and the MicroProfile Config property is ignored.
OPENAPI_MP_CONFIG_CONFLICTS_CWWKO1686W.useraction=Remove the MicroProfile Config property and make sure that the configuration in the server.xml file is correct.

OPENAPI_ANNOTATION_TOO_NEW_CWWKO1687W=CWWKO1687W: The {0} annotation element in the {1} class is ignored because it requires OpenAPI version {2} but the current OpenAPI version is {3}.
OPENAPI_ANNOTATION_TOO_NEW_CWWKO1687W.explanation=The annotation element relates to a feature added to a newer version of the OpenAPI specification than the one configured. The OpenAPI version in use cannot represent this information, so it is excluded from the produced OpenAPI documentation.
OPENAPI_ANNOTATION_TOO_NEW_CWWKO1687W.useraction=Consider removing the annotation element or setting the openAPIVersion configuration element to a version which supports it in the server.xml file.