-
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
1 parent
e8d1403
commit 7e53724
Showing
5 changed files
with
118 additions
and
25 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
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