-
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.
fix(#1016): Enhance bean definition parser configuration capabilities
- Loading branch information
Thorsten Schlathoelter
committed
Oct 13, 2023
1 parent
12aa556
commit a57e811
Showing
3 changed files
with
101 additions
and
12 deletions.
There are no files selected for viewing
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
18 changes: 18 additions & 0 deletions
18
...citrus-spring/src/main/java/org/citrusframework/common/SpringXmlTestLoaderConfigurer.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,18 @@ | ||
package org.citrusframework.common; | ||
|
||
/** | ||
* A marker interface for identifying beans that supply a {@link SpringXmlTestLoaderConfiguration} | ||
* annotation to configure the bean definition parser for SpringXmlTest parsing. | ||
* <p> | ||
* To define specific bean definition parser configurations, you can implement this interface | ||
* along with the corresponding {@link SpringXmlTestLoaderConfiguration} annotation and provide it | ||
* as a bean through the parent {@link org.springframework.context.ApplicationContext} used for | ||
* loading SpringXmlTest. | ||
* | ||
* | ||
* @author Thorsten Schlathoelter | ||
* @since 4.0 | ||
* @see SpringXmlTestLoader | ||
*/ | ||
public interface SpringXmlTestLoaderConfigurer { | ||
} |
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