-
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.
Merge pull request #35149 from gsmet/3.2.3-backports-2
3.2.3 backports 2
- Loading branch information
Showing
36 changed files
with
471 additions
and
85 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
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
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
40 changes: 40 additions & 0 deletions
40
...yment/src/main/java/io/quarkus/hibernate/reactive/panache/common/deployment/DotNames.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,40 @@ | ||
package io.quarkus.hibernate.reactive.panache.common.deployment; | ||
|
||
import jakarta.persistence.NamedQueries; | ||
import jakarta.persistence.NamedQuery; | ||
|
||
import org.jboss.jandex.DotName; | ||
|
||
import io.quarkus.hibernate.reactive.panache.common.WithSession; | ||
import io.quarkus.hibernate.reactive.panache.common.WithSessionOnDemand; | ||
import io.quarkus.hibernate.reactive.panache.common.WithTransaction; | ||
import io.quarkus.hibernate.reactive.panache.common.runtime.ReactiveTransactional; | ||
import io.smallrye.mutiny.Uni; | ||
|
||
final class DotNames { | ||
|
||
static final DotName DOTNAME_NAMED_QUERY = DotName.createSimple(NamedQuery.class.getName()); | ||
static final DotName DOTNAME_NAMED_QUERIES = DotName.createSimple(NamedQueries.class.getName()); | ||
static final DotName REACTIVE_TRANSACTIONAL = DotName.createSimple(ReactiveTransactional.class.getName()); | ||
static final DotName WITH_SESSION_ON_DEMAND = DotName.createSimple(WithSessionOnDemand.class.getName()); | ||
static final DotName WITH_SESSION = DotName.createSimple(WithSession.class.getName()); | ||
static final DotName WITH_TRANSACTION = DotName.createSimple(WithTransaction.class.getName()); | ||
static final DotName UNI = DotName.createSimple(Uni.class.getName()); | ||
|
||
static final DotName PANACHE_ENTITY_BASE = DotName | ||
.createSimple("io.quarkus.hibernate.reactive.panache.PanacheEntityBase"); | ||
static final DotName PANACHE_ENTITY = DotName.createSimple("io.quarkus.hibernate.reactive.panache.PanacheEntity"); | ||
static final DotName PANACHE_KOTLIN_ENTITY_BASE = DotName | ||
.createSimple("io.quarkus.hibernate.reactive.panache.kotlin.PanacheEntityBase"); | ||
static final DotName PANACHE_KOTLIN_ENTITY = DotName | ||
.createSimple("io.quarkus.hibernate.reactive.panache.kotlin.PanacheEntity"); | ||
|
||
static final DotName PANACHE_REPOSITORY_BASE = DotName | ||
.createSimple("io.quarkus.hibernate.reactive.panache.PanacheRepositoryBase"); | ||
static final DotName PANACHE_REPOSITORY = DotName.createSimple("io.quarkus.hibernate.reactive.panache.PanacheRepository"); | ||
static final DotName PANACHE_KOTLIN_REPOSITORY_BASE = DotName | ||
.createSimple("io.quarkus.hibernate.reactive.panache.kotlin.PanacheRepositoryBase"); | ||
static final DotName PANACHE_KOTLIN_REPOSITORY = DotName | ||
.createSimple("io.quarkus.hibernate.reactive.panache.kotlin.PanacheRepository"); | ||
|
||
} |
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
Oops, something went wrong.