-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce ConnectionFactoryWrapperBuildItem
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
...ment/src/main/java/io/quarkus/deployment/builditem/ConnectionFactoryWrapperBuildItem.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,20 @@ | ||
package io.quarkus.deployment.builditem; | ||
|
||
import java.util.function.Function; | ||
|
||
import io.quarkus.builder.item.SimpleBuildItem; | ||
|
||
/** | ||
* A build item that can be used to wrap ConnectionFactory | ||
*/ | ||
public final class ConnectionFactoryWrapperBuildItem extends SimpleBuildItem { | ||
private final Function<Object, Object> wrapper; | ||
|
||
public ConnectionFactoryWrapperBuildItem(Function<Object, Object> wrapper) { | ||
this.wrapper = wrapper; | ||
} | ||
|
||
public Function<Object, Object> getWrapper() { | ||
return wrapper; | ||
} | ||
} |