Files
codeql/java/ql/lib/semmle/code/java/frameworks/Hibernate.qll
2022-12-05 09:49:38 +01:00

23 lines
691 B
Plaintext

/**
* Provides classes and predicates for working with the Hibernate framework.
*/
import java
/** The interface `org.hibernate.query.QueryProducer`. */
class HibernateQueryProducer extends RefType {
HibernateQueryProducer() { this.hasQualifiedName("org.hibernate.query", "QueryProducer") }
}
/** The interface `org.hibernate.SharedSessionContract`. */
class HibernateSharedSessionContract extends RefType {
HibernateSharedSessionContract() {
this.hasQualifiedName("org.hibernate", "SharedSessionContract")
}
}
/** The interface `org.hibernate.Session`. */
class HibernateSession extends RefType {
HibernateSession() { this.hasQualifiedName("org.hibernate", "Session") }
}