Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
56.6. Excluded Arguments
Overview Link kopierenLink in die Zwischenablage kopiert!
Link kopierenLink in die Zwischenablage kopiert!
					Sometimes, you might need to exclude certain arguments, when it comes to mapping Java arguments to URI options. You can filter out unwanted arguments by specifying either the 
excludeConfigNames element or the excludeConfigTypes element in the camel-api-component-maven-plugin plug-in configuration.
				Syntax Link kopierenLink in die Zwischenablage kopiert!
Link kopierenLink in die Zwischenablage kopiert!
					The 
excludeConfigNames element and the excludeConfigTypes element are specified as follows:
				<excludeConfigNames>ArgumentNamePattern</excludeConfigNames> <excludeConfigTypes>TypeNamePattern</excludeConfigTypes>
<excludeConfigNames>ArgumentNamePattern</excludeConfigNames>
<excludeConfigTypes>TypeNamePattern</excludeConfigTypes>
					Where 
ArgumentNamePattern and TypeNamePattern are regular expressions that match the argument name and the argument type, respectively.
				Scope Link kopierenLink in die Zwischenablage kopiert!
Link kopierenLink in die Zwischenablage kopiert!
					As shown in the following extract, the 
excludeConfigNames element and the excludeConfigTypes element can optionally appear as children of the apis element and/or as children of api elements:
				
					You can define the 
excludeConfigNames element and the excludeConfigTypes element at the following scopes:
				- As a child of an
apielement—the exclusions apply only to the API class specified by theapielement. - As a child of the
apiselement—the exclusions apply to all API classes by default, but can be overridden at theapilevel. 
Elements Link kopierenLink in die Zwischenablage kopiert!
Link kopierenLink in die Zwischenablage kopiert!
					The following elements can be used to exclude arguments from the API mapping (so that they are unavailable as URI options):
				
excludeConfigNames- Specifies a regular expression (
java.util.regexsyntax) for excluding arguments, based on matching the argument name. excludeConfigTypes- Specifies a regular expression (
java.util.regexsyntax) for excluding arguments, based on matching the argument type.