mirror of
https://github.com/github/codeql.git
synced 2026-08-04 09:23:23 +02:00
Agent-Logs-Url: https://github.com/github/codeql/sessions/2e7aecca-63ea-489f-8b87-4cc557655919 Co-authored-by: owen-mc <62447351+owen-mc@users.noreply.github.com>
12 lines
253 B
Java
Generated
12 lines
253 B
Java
Generated
package org.hibernate;
|
|
|
|
import org.hibernate.query.Query;
|
|
import org.hibernate.query.QueryProducer;
|
|
|
|
public interface SharedSessionContract extends QueryProducer {
|
|
|
|
Query createQuery(String queryString);
|
|
|
|
Query createSQLQuery(String queryString);
|
|
}
|